void-packages/triggers/pango-modules
Juan RP 1d87665840 chmod 644 to triggers.
--HG--
extra : convert_revision : 810c401da0882596124b096bce36c419ef5bf280
2009-04-18 15:10:04 +02:00

39 lines
683 B
Bash

#!/bin/sh
#
# Updates the list of pango modules with pango-querymodules(1).
#
# Arguments: $1 = action [run/targets]
# $2 = target [post-install/post-remove]
# $3 = pkgname
# $4 = version
#
trigger="pango-modules"
pango_bin=./usr/bin/pango-querymodules
pango_modules=./etc/pango/pango.modules
case "$1" in
targets)
echo "post-install post-remove"
;;
run)
echo "Running $trigger trigger..."
case "$2" in
post-*)
if [ -f ${pango_modules} ]; then
echo "Removing $trigger list file..."
rm -f ${pango_modules}
fi
if [ -x ${pango_bin} ]; then
echo "Creating $trigger list file..."
${pango_bin} > ${pango_modules}
fi
;;
esac
;;
*)
exit 1
;;
esac
exit 0