blob: 0fa5e629dc6efdb77509990a7639d8336f1ad1ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo -n "Updating font cache... "
fc-cache usr/share/fonts/TTF
mkfontdir usr/share/fonts/TTF
echo "done"
}
post_upgrade() {
echo -n "Updating font cache... "
echo "done"
}
|