vp-build/triggers/gtk-icon-cache
Juan RP 5b3489c9ea xbps-base-files: some changes to all triggers.
--HG--
extra : convert_revision : 2f3a39a7d1853268b84c5087cbbf5e74044c20f0
2009-05-19 02:13:58 +02:00

44 lines
784 B
Bash
Executable File

#!/bin/sh
#
# Updates GTK+ icon cache file with gtk-update-icon-cache(1).
#
# Arguments: $1 = action [run/targets]
# $2 = target [post-install/post-remove]
# $3 = pkgname
# $4 = version
#
iconcache_bin=usr/bin/gtk-update-icon-cache
case "$1" in
targets)
echo "post-install post-remove"
;;
run)
case "$2" in
post-install)
for dir in ${gtk_iconcache_dirs}; do
if [ -x ${iconcache_bin} ]; then
echo -n "Updating GTK+ icon cache for "
echo -n "${dir}... "
${iconcache_bin} -q -f -t ${dir}
echo "done."
fi
done
;;
post-remove)
for dir in ${gtk_iconcache_dirs}; do
if [ -f ${dir}/icon-theme.cache ]; then
rm -f ${dir}/icon-theme.cache
echo "Removed GTK+ icon theme cache for ${dir}."
fi
done
;;
esac
;;
*)
exit 1
;;
esac
exit 0