gnu: mpv-mpris: Switch to copy-build-system.

* gnu/packages/video.scm (mpv-mpris)[build-system]: Switch to
copy-build-system.
[arguments]: Add custom 'build phase before 'install phase.
This commit is contained in:
Efraim Flashner 2020-04-01 10:17:47 +03:00
parent b51a37b116
commit 2a844af991
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -65,6 +65,7 @@ (define-module (gnu packages video)
#:use-module (guix git-download)
#:use-module (guix svn-download)
#:use-module (guix build-system cmake)
#:use-module (guix build-system copy)
#:use-module (guix build-system gnu)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system meson)
@ -1549,18 +1550,16 @@ (define-public mpv-mpris
(sha256
(base32
"1fr3jvja8s2gdpx8qyk9r17977flms3qpm8zci62nd9r5wjdvr5i"))))
(build-system gnu-build-system)
(build-system copy-build-system)
(arguments
'(#:tests? #f ; no tests
#:make-flags '("CC=gcc")
'(#:install-plan
'(("mpris.so" "lib/"))
#:phases
(modify-phases %standard-phases
(delete 'configure) ; no configure script
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "mpris.so" (string-append out "/lib")))
#t)))))
(add-before 'install 'build
(lambda _
(setenv "CC" (which "gcc"))
(invoke "make"))))))
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs