af1b82c40a
Bump xbps-base-files to 0.30. --HG-- extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
51 lines
916 B
Bash
Executable file
51 lines
916 B
Bash
Executable file
#!/bin/sh -e
|
|
#
|
|
# Updates GTK+ icon cache file with gtk-update-icon-cache(1).
|
|
#
|
|
# Arguments: $ACTION = [run/targets]
|
|
# $TARGET = [post-install/post-remove]
|
|
# $PKGNAME
|
|
# $VERSION
|
|
# $UPDATE = [yes/no]
|
|
#
|
|
ACTION="$1"
|
|
TARGET="$2"
|
|
PKGNAME="$3"
|
|
VERSION="$4"
|
|
UPDATE="$5"
|
|
|
|
iconcache_bin=usr/bin/gtk-update-icon-cache
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "gtk+" ]; then
|
|
for dir in ${gtk_iconcache_dirs}; do
|
|
if [ -f ${dir}/icon-theme.cache ]; then
|
|
rm -f ${dir}/icon-theme.cache
|
|
echo -n "Removed GTK+ icon theme "
|
|
echo "cache for ${dir}."
|
|
fi
|
|
done
|
|
break
|
|
fi
|
|
case "$TARGET" in
|
|
post-*)
|
|
for dir in ${gtk_iconcache_dirs}; do
|
|
if [ -x ${iconcache_bin} ]; then
|
|
echo -n "Updating GTK+ icon cache for "
|
|
echo "${dir}..."
|
|
${iconcache_bin} -q -f -t ${dir}
|
|
fi
|
|
done
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|