me
/
guix
Archived
1
0
Fork 0

gnu: gnome-sudoku: Update to 3.32.0.

* gnu/packages/gnome.scm (gnome-sudoku): Update to 3.32.0.
[build-system]: Use meson-build-system.
[arguments]: Set glib-or-gtk? flag and add 'skip-gtk-update-icon-cache' phase.
[native-inputs]: Add glib:bin and vala.
master
Kei Kebreau 2019-07-24 23:01:31 -04:00
parent 2d817e415b
commit 7dc728c4b7
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 14 additions and 3 deletions

View File

@ -3190,7 +3190,7 @@ floating in an ocean using only your brain and a little bit of luck.")
(define-public gnome-sudoku (define-public gnome-sudoku
(package (package
(name "gnome-sudoku") (name "gnome-sudoku")
(version "3.30.0") (version "3.32.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -3199,13 +3199,24 @@ floating in an ocean using only your brain and a little bit of luck.")
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1xy986s51jnrcqwan2hy4bjdg6797yr9s7gxx2z2q4j4gkx3qa1f")))) "1wwdjflw1lbx3cv6gvqcgp5jnjkrq37ld6mjbjj03g3vr90qaf0l"))))
(build-system glib-or-gtk-build-system) (build-system meson-build-system)
(arguments
'(#:glib-or-gtk? #t
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'skip-gtk-update-icon-cache
(lambda _
(substitute* "build-aux/post_install.py"
(("gtk-update-icon-cache") (which "true")))
#t)))))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("pkg-config" ,pkg-config)
("desktop-file-utils" ,desktop-file-utils) ("desktop-file-utils" ,desktop-file-utils)
("glib:bin" ,glib "bin") ; for glib-compile-resources
("intltool" ,intltool) ("intltool" ,intltool)
("itstool" ,itstool) ("itstool" ,itstool)
("vala" ,vala)
("xmllint" ,libxml2))) ("xmllint" ,libxml2)))
(inputs (inputs
`(("gtk+" ,gtk+) `(("gtk+" ,gtk+)