gnu: evince: Don't install 'icon-theme.cache'.
* gnu/packages/gnome.scm (evince)[arguments]: Add 'skip-gtk-update-icon-cache' phase.
This commit is contained in:
parent
d1fb4af6b8
commit
554b2dac09
1 changed files with 9 additions and 1 deletions
|
@ -480,7 +480,15 @@ (define-public evince
|
|||
;; FIXME: Tests fail with:
|
||||
;; ImportError: No module named gi.repository
|
||||
;; Where should that module come from?
|
||||
#:tests? #f))
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'skip-gtk-update-icon-cache
|
||||
;; Don't create 'icon-theme.cache'.
|
||||
(lambda _
|
||||
(substitute* "data/Makefile"
|
||||
(("gtk-update-icon-cache") "true"))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("libspectre" ,libspectre)
|
||||
("djvulibre" ,djvulibre)
|
||||
|
|
Loading…
Reference in a new issue