gnu: openscenegraph: Use modern package style.
* gnu/packages/graphics.scm (openscenegraph)[arguments]: Convert to list of G-Expressions. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
e6ff91bfc4
commit
629a5936a6
1 changed files with 9 additions and 8 deletions
|
@ -1354,14 +1354,15 @@ visual effects work for film.")
|
||||||
`((upstream-name . "OpenSceneGraph")))
|
`((upstream-name . "OpenSceneGraph")))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no test target available
|
(list
|
||||||
|
#:tests? #f ; no test target available
|
||||||
;; Without this flag, 'rd' will be added to the name of the
|
;; Without this flag, 'rd' will be added to the name of the
|
||||||
;; library binaries and break linking with other programs.
|
;; library binaries and break linking with other programs.
|
||||||
#:build-type "Release"
|
#:build-type "Release"
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list (string-append "-DCMAKE_INSTALL_RPATH="
|
#~(list (string-append "-DCMAKE_INSTALL_RPATH="
|
||||||
(assoc-ref %outputs "out") "/lib:"
|
#$output "/lib:"
|
||||||
(assoc-ref %outputs "out") "/lib64"))))
|
#$output "/lib64"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config unzip))
|
(list pkg-config unzip))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in a new issue