summaryrefslogtreecommitdiff
path: root/build/linux/triggers/gtk+.trigger
diff options
context:
space:
mode:
Diffstat (limited to 'build/linux/triggers/gtk+.trigger')
-rw-r--r--build/linux/triggers/gtk+.trigger26
1 files changed, 26 insertions, 0 deletions
diff --git a/build/linux/triggers/gtk+.trigger b/build/linux/triggers/gtk+.trigger
new file mode 100644
index 00000000..2e598fbe
--- /dev/null
+++ b/build/linux/triggers/gtk+.trigger
@@ -0,0 +1,26 @@
+# Post-installation hook for gtk icon cache. -*- mode: sh -*-
+#
+# Written by Colin Walters <walters@verbum.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+# IfExecutable: gtk-update-icon-cache
+# LiteralMatch: /share/icons/
+
+for dir in $JHBUILD_PREFIX/share/icons/*; do
+ if test -f $dir/index.theme; then
+ gtk-update-icon-cache --quiet $dir
+ fi
+done