void-packages/helper-templates/pango-update-modules.sh
Juan RP 84d4f6391a Change helper-templates files to mode 644.
--HG--
extra : convert_revision : a156c08bb49d2314e667b86feba5a5a3180e39f2
2008-10-13 07:51:55 +02:00

17 lines
513 B
Bash

#
# This helper updates the pango modules file when the pango package
# has been properly installed and stowned.
#
pango_query_modules_cmd=$XBPS_MASTERDIR/bin/pango-querymodules
pango_query_modules_db=$XBPS_SYSCONFDIR/pango/pango.modules
if [ -x $pango_query_modules_cmd -a -w $pango_query_modules_db ]; then
$pango_query_modules_cmd > $pango_query_modules_db
[ "$?" -eq 0 ] && \
echo "=> Updated Pango's $pango_query_modules_db modules file."
fi
unset pango_query_modules_cmd
unset pango_query_modules_db