gnu: file-roller: Don't install 'icon-theme.cache'
* gnu/packages/gnome.scm (file-roller)[arguments]: Add 'skip-gtk-update-icon-cache' phase.
This commit is contained in:
parent
27880b5edd
commit
c282c55d22
|
@ -3927,6 +3927,15 @@ share them with others via social networking and more.")
|
||||||
(base32
|
(base32
|
||||||
"0cx3d8mp0pxz9wcsb2ph7g1zy22m8z5x0a4f5vgfzl0jmrcxpcy8"))))
|
"0cx3d8mp0pxz9wcsb2ph7g1zy22m8z5x0a4f5vgfzl0jmrcxpcy8"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'skip-gtk-update-icon-cache
|
||||||
|
(lambda _
|
||||||
|
;; Don't create 'icon-theme.cache'
|
||||||
|
(substitute* (find-files "data" "^Makefile$")
|
||||||
|
(("gtk-update-icon-cache") (which "true")))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
|
|
Loading…
Reference in New Issue