me
/
guix
Archived
1
0
Fork 0

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>
master
Liliana Marie Prikler 2022-12-03 09:12:15 +01:00
parent e6ff91bfc4
commit 629a5936a6
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 9 additions and 8 deletions

View File

@ -1354,14 +1354,15 @@ visual effects work for film.")
`((upstream-name . "OpenSceneGraph")))
(build-system cmake-build-system)
(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
;; library binaries and break linking with other programs.
#:build-type "Release"
#:configure-flags
(list (string-append "-DCMAKE_INSTALL_RPATH="
(assoc-ref %outputs "out") "/lib:"
(assoc-ref %outputs "out") "/lib64"))))
#~(list (string-append "-DCMAKE_INSTALL_RPATH="
#$output "/lib:"
#$output "/lib64"))))
(native-inputs
(list pkg-config unzip))
(inputs