gnu: raylib: Build shared libraries.
* gnu/packages/game-development.scm (raylib): [arguments]{#:configure-flags}: Enable building shared libraries. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
66f7d95d02
commit
e08ae5900a
|
@ -2847,12 +2847,15 @@ progresses the level, or you may regenerate tiles as the world changes.")
|
||||||
(url "https://github.com/raysan5/raylib/")
|
(url "https://github.com/raysan5/raylib/")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
|
;; TODO: Unbundle src/external
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14v5iwxh8grywiyw9agpd2sfpyriq1rwwkd9f2s4iihh0z5j7hk8"))))
|
"14v5iwxh8grywiyw9agpd2sfpyriq1rwwkd9f2s4iihh0z5j7hk8"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f)) ;no test
|
(list #:tests? #f ;no test
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "-DBUILD_SHARED_LIBS=ON" )))
|
||||||
(inputs (list alsa-lib
|
(inputs (list alsa-lib
|
||||||
libx11
|
libx11
|
||||||
libxrandr
|
libxrandr
|
||||||
|
|
Reference in New Issue