void-packages/srcpkgs/xbps-triggers/files/gdk-pixbuf-loaders
maxice8 8f5e2dfc53
xbps-triggers: rename gtk-pixbuf-loaders to gdk-pixbuf-loaders
It is the correct name, keep the old name as a scripts that execs itself
into the new one for packages that still use gtk-pixbuf-loaders
2018-08-23 17:16:47 -03:00

51 lines
1,010 B
Bash
Executable file

#!/bin/sh
#
# Updates's GDK Pixbuf loaders cache with gdk-pixbuf-query-loaders(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"
export PATH="$PATH:/usr/local/bin"
pixbuf_bin=usr/bin/gdk-pixbuf-query-loaders
pixbuf_cache=usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
case "$ACTION" in
targets)
echo "post-install pre-remove post-remove"
;;
run)
[ ! -x ${pixbuf_bin} ] && exit 0
if [ "$TARGET" = "pre-remove" -a "${PKGNAME}" = "gdk-pixbuf" ]; then
[ -f ${pixbuf_cache} ] && rm -f ${pixbuf_cache}
break
fi
case "$TARGET" in
post-*)
if [ -f etc/gtk-2.0/gdk-pixbuf.loaders ]; then
echo " Removing obsolete conf file: etc/gtk-2.0/gdk-pixbuf.loaders"
rm -f etc/gtk-2.0/gdk-pixbuf.loaders
fi
if [ -x ${pixbuf_bin} ]; then
echo "Updating GDK Pixbuf loaders cache..."
${pixbuf_bin} --update-cache
fi
;;
esac
;;
*)
exit 1
;;
esac
exit 0