cfa18b4416
Also known as "xtraeme's build package system". --HG-- extra : convert_revision : 119840ceae588fef65d6dcab651f607f54fa0be6
10 lines
245 B
Bash
Executable File
10 lines
245 B
Bash
Executable File
#
|
|
# This helpers runs fc-cache after fontconfig has been installed,
|
|
# and update its list of fonts.
|
|
#
|
|
|
|
if [ -x $XBPS_MASTERDIR/bin/fc-cache ]; then
|
|
$XBPS_MASTERDIR/bin/fc-cache -f
|
|
[ "$?" -eq 0 ] && echo "=> Updated fontconfig fonts cache."
|
|
fi
|