me
/
guix
Archived
1
0
Fork 0

gnu: cheese: Update to 3.34.0.

* gnu/packages/gnome.scm (cheese): Update to 3.34.0.
[build-system]: Use meson-build-system.
[arguments]: Set #:glib-or-gtk? flag.  Adjust 'skip-gtk-update-icon-cache'
phase and run it after the 'unpack' phase.
[native-inputs]: Add docbook-xsl, gtk-doc, and libxslt.

(cherry picked from commit e96f871c3603da785e31a3c130ae1d1a64827a93)
master
Kei Kebreau 2019-12-23 13:00:36 -05:00
parent 30e76da115
commit 3a7e066f71
No known key found for this signature in database
GPG Key ID: E6A5EE3C19467A0D
1 changed files with 12 additions and 8 deletions

View File

@ -9034,7 +9034,7 @@ photo-booth-like software, such as Cheese.")
(define-public cheese (define-public cheese
(package (package
(name "cheese") (name "cheese")
(version "3.32.1") (version "3.34.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/" (uri (string-append "mirror://gnome/sources/" name "/"
@ -9042,16 +9042,17 @@ photo-booth-like software, such as Cheese.")
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1xlmsm4zsx05ahvpd4mgy1hfhxbag0r5i6p63bksjxdligdd36kv")))) "0wvyc9wb0avrprvm529m42y5fkv3lirdphqydc9jw0c8mh05d1ni"))))
(arguments (arguments
`(#:glib-or-gtk? #t
;; Tests require GDK. ;; Tests require GDK.
`(#:tests? #f #:tests? #f
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-before 'install 'skip-gtk-update-icon-cache (add-after 'unpack 'skip-gtk-update-icon-cache
(lambda _ (lambda _
;; Don't create 'icon-theme.cache' ;; Don't create 'icon-theme.cache'
(substitute* "Makefile" (substitute* "meson_post_install.py"
(("gtk-update-icon-cache") (which "true"))) (("gtk-update-icon-cache") (which "true")))
#t)) #t))
(add-after 'install 'wrap-cheese (add-after 'install 'wrap-cheese
@ -9061,12 +9062,15 @@ photo-booth-like software, such as Cheese.")
(wrap-program (string-append out "/bin/cheese") (wrap-program (string-append out "/bin/cheese")
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))) `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))
#t))))) #t)))))
(build-system glib-or-gtk-build-system) (build-system meson-build-system)
(native-inputs (native-inputs
`(("glib:bin" ,glib "bin") `(("docbook-xsl" ,docbook-xsl)
("glib:bin" ,glib "bin")
("gtk-doc" ,gtk-doc)
("intltool" ,intltool) ("intltool" ,intltool)
("itstool" ,itstool) ("itstool" ,itstool)
("libxml2" ,libxml2) ("libxml2" ,libxml2)
("libxslt" ,libxslt)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("vala" ,vala))) ("vala" ,vala)))
(propagated-inputs (propagated-inputs