guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: totem: Don't create icon cache.


From: guix-commits
Subject: 03/06: gnu: totem: Don't create icon cache.
Date: Thu, 7 Nov 2019 05:52:04 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit d51b19adabb3449c1919eddd3510439e25d6cace
Author: Efraim Flashner <address@hidden>
Date:   Thu Nov 7 12:34:26 2019 +0200

    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.
---
 gnu/packages/gnome.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index d9364ac..5843fe9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3947,7 +3947,6 @@ for application developers.")
        ("desktop-file-utils" ,desktop-file-utils)
        ("gobject-introspection" ,gobject-introspection)
        ("glib:bin" ,glib "bin")                   ;for 'glib-mkenums'
-       ("gtk:bin" ,gtk+ "bin")                    ;for 'gtk-update-icon-cache'
        ("intltool" ,intltool)
        ("itstool" ,itstool)
        ("xmllint" ,libxml2)))
@@ -4003,6 +4002,12 @@ for application developers.")
 
        #: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
           'install 'disable-cache-generation
           (lambda _



reply via email to

[Prev in Thread] Current Thread [Next in Thread]