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:
宋文武 2016-08-22 21:40:44 +08:00
parent 27880b5edd
commit c282c55d22
No known key found for this signature in database
GPG key ID: 26525665AE727D37

View file

@ -3927,6 +3927,15 @@ (define-public file-roller
(base32
"0cx3d8mp0pxz9wcsb2ph7g1zy22m8z5x0a4f5vgfzl0jmrcxpcy8"))))
(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
`(("intltool" ,intltool)
("pkg-config" ,pkg-config)))