vp-build/templates/fontconfig/INSTALL
Juan RP 4f73d12171 fontconfig: add an INSTALL script that runs fc-cache.
--HG--
extra : convert_revision : 2acea147fb7e83af81310bbdefbeee0627957892
2009-03-23 18:47:46 +01:00

13 lines
159 B
Plaintext

#
# This script builds fontconfig's fonts cache.
#
case "$2" in
pre)
;;
post)
echo "Building fonts cache... "
fc-cache -f >/dev/null
echo "done."
;;
esac