af1b82c40a
Bump xbps-base-files to 0.30. --HG-- extra : convert_revision : 6158c0bed798e097ba75c902a0be2498e3361e02
46 lines
782 B
Bash
Executable file
46 lines
782 B
Bash
Executable file
#!/bin/sh -e
|
|
#
|
|
# Updates the list of pango modules with pango-querymodules(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"
|
|
|
|
pango_bin=usr/bin/pango-querymodules
|
|
pango_modules=etc/pango/pango.modules
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "pango" ]; then
|
|
if [ -f ${pango_modules} ]; then
|
|
echo "Removing pango modules file..."
|
|
rm -f ${pango_modules}
|
|
fi
|
|
break
|
|
fi
|
|
case "$TARGET" in
|
|
post-*)
|
|
if [ -x ${pango_bin} ]; then
|
|
echo "Updating pango modules file..."
|
|
${pango_bin} > ${pango_modules}
|
|
fi
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|