gnu: vinagre: Don't build icon-cache.
* gnu/packages/gnome.scm (vinagre)[arguments]: Add custom phase to remove 'gtk-update-icon-cache'. [native-inputs]: Remove gtk+-bin.
This commit is contained in:
parent
684f97f8c9
commit
1839768ca1
|
@ -2230,6 +2230,12 @@ selection and URL hints.")))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'skip-gtk-update-icon-cache
|
||||||
|
(lambda _
|
||||||
|
;; Don't create 'icon-theme.cache'
|
||||||
|
(substitute* (find-files "." "^Makefile$")
|
||||||
|
(("gtk-update-icon-cache") (which "true")))
|
||||||
|
#t))
|
||||||
(add-after 'unpack 'patch-configure
|
(add-after 'unpack 'patch-configure
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
|
@ -2239,8 +2245,7 @@ selection and URL hints.")))
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("itstool" ,itstool)
|
("itstool" ,itstool)
|
||||||
("glib-bin" ,glib "bin") ;for glib-compile-schemas
|
("glib-bin" ,glib "bin"))) ;for glib-compile-schemas
|
||||||
("gtk+-bin" ,gtk+ "bin"))) ;for gtk-update-icon-cache
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("libxml2" ,libxml2)
|
`(("libxml2" ,libxml2)
|
||||||
("gtk-vnc" ,gtk-vnc)
|
("gtk-vnc" ,gtk-vnc)
|
||||||
|
|
Loading…
Reference in New Issue