me
/
guix
Archived
1
0
Fork 0

gnu: cglm: Use meson-build-system.

The CMake-based builds fail to correctly encode the version, leading to build
failures in dependencies.  See <https://bugs.gnu.org/52663>.

* gnu/packages/maths.scm (cglm)[build-system]: Change to meson-build-system.
[arguments]: Adjust #:configure-flags accordingly.
master
Liliana Marie Prikler 2021-12-19 21:42:34 +01:00
parent 42b43c59a5
commit 78bfbfb5a7
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 3 additions and 3 deletions

View File

@ -79,6 +79,7 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
#:use-module (guix build-system ocaml)
#:use-module (guix build-system python)
#:use-module (guix build-system ruby)
@ -4869,10 +4870,9 @@ Failure to do so will result in a library with poor performance.")
(file-name (git-file-name name version))
(sha256
(base32 "0zgckh56vcdar3a4n51r84wrizyd2ssqal4nsvxd4qdjm0rvb4h0"))))
(build-system cmake-build-system)
(build-system meson-build-system)
(arguments
`(#:configure-flags
(list "-DCGLM_USE_TEST=ON")))
`(#:configure-flags '("-Dbuild_tests=true")))
(home-page "https://github.com/recp/cglm")
(synopsis "Mathematics C library for graphics programming")
(description