mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
15 lines
233 B
Text
15 lines
233 B
Text
post_install() {
|
|
echo -n "Updating font cache... "
|
|
fc-cache -f > /dev/null
|
|
mkfontscale /usr/share/fonts/OTF
|
|
mkfontdir /usr/share/fonts/OTF
|
|
echo "done."
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
post_install
|
|
}
|