783dc64e4b
--HG-- extra : convert_revision : 38fd5a6f1aea9fc17b8c9055d8a56c9e5f4b8aa7
39 lines
683 B
Bash
Executable file
39 lines
683 B
Bash
Executable file
#!/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
|