fontconfig: add an INSTALL script that runs fc-cache.

--HG--
extra : convert_revision : 2acea147fb7e83af81310bbdefbeee0627957892
This commit is contained in:
Juan RP 2009-03-23 18:47:46 +01:00
parent 3636e68661
commit 4f73d12171

View file

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