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:
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

View file

@ -1354,14 +1354,15 @@ (define-public openscenegraph
`((upstream-name . "OpenSceneGraph")))
(build-system cmake-build-system)
(arguments
`(#: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
#: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="
#$output "/lib:"
#$output "/lib64"))))
(native-inputs
(list pkg-config unzip))
(inputs