gnu: gexiv2: Skip failing test on 32-bit platforms.

* gnu/packages/gnome.scm (gexiv2)[arguments]: New field.
master
Ludovic Courtès 2019-04-30 18:29:10 +02:00
parent 81824af6a4
commit 094aaa1a1e
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 8 additions and 0 deletions

View File

@ -4629,6 +4629,14 @@ classes for commonly used data structures.")
(base32
"1qbcwq89g4r67k1dj4laqj441pj4195c8hzhxn8vc6mmg8adg6kx"))))
(build-system meson-build-system)
(arguments
;; On 32-bit platforms, the test fails with a rounding error:
;; <https://bugzilla.gnome.org/show_bug.cgi?id=775249>. Just skip it for
;; now.
(if (and (not (%current-target-system))
(member (%current-system) '("i686-linux" "armhf-linux")))
'(#:tests? #f)
'()))
(native-inputs
`(("glib" ,glib "bin")
("pkg-config" ,pkg-config)))