mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: phonon: Use gexp.
* gnu/packages/kde-frameworks.scm (phonon): Use gexp. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
d92e4f59bb
commit
f487618b13
1 changed files with 12 additions and 12 deletions
|
@ -231,18 +231,18 @@ (define-public phonon
|
|||
(inputs
|
||||
(list qtbase-5))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
'("-DCMAKE_CXX_FLAGS=-fPIC"
|
||||
"-DPHONON_BUILD_PHONON4QT5=ON")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'patch-installdir
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((regex (string-append "(INSTALL DESTINATION \")"
|
||||
(assoc-ref inputs "qtbase"))))
|
||||
(substitute* "cmake_install.cmake"
|
||||
((regex all dest)
|
||||
(string-append dest (assoc-ref outputs "out"))))))))))
|
||||
(list #:configure-flags
|
||||
#~'("-DCMAKE_CXX_FLAGS=-fPIC"
|
||||
"-DPHONON_BUILD_PHONON4QT5=ON")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'install 'patch-installdir
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let ((regex (string-append "(INSTALL DESTINATION \")"
|
||||
#$(this-package-input "qtbase"))))
|
||||
(substitute* "cmake_install.cmake"
|
||||
((regex all dest)
|
||||
(string-append dest #$output)))))))))
|
||||
(home-page "https://community.kde.org/Phonon")
|
||||
(synopsis "KDE's multimedia library")
|
||||
(description "KDE's multimedia library.")
|
||||
|
|
Loading…
Reference in a new issue