gnu: totem: Don't create icon cache.
* gnu/packages/gnome.scm (totem)[arguments]: Add phase to skip creating the gtk icon cache. [native-inputs]: Remove gtk+:bin.master
parent
35407f948e
commit
d51b19adab
|
@ -3947,7 +3947,6 @@ for application developers.")
|
||||||
("desktop-file-utils" ,desktop-file-utils)
|
("desktop-file-utils" ,desktop-file-utils)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("glib:bin" ,glib "bin") ;for 'glib-mkenums'
|
("glib:bin" ,glib "bin") ;for 'glib-mkenums'
|
||||||
("gtk:bin" ,gtk+ "bin") ;for 'gtk-update-icon-cache'
|
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("itstool" ,itstool)
|
("itstool" ,itstool)
|
||||||
("xmllint" ,libxml2)))
|
("xmllint" ,libxml2)))
|
||||||
|
@ -4003,6 +4002,12 @@ for application developers.")
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
||||||
|
;; Don't create 'icon-theme.cache'.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "meson_post_install.py"
|
||||||
|
(("gtk-update-icon-cache") "true"))
|
||||||
|
#t))
|
||||||
(add-before
|
(add-before
|
||||||
'install 'disable-cache-generation
|
'install 'disable-cache-generation
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Reference in New Issue