mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
12 lines
265 B
Text
12 lines
265 B
Text
|
post_install() {
|
||
|
echo -n "Regenerating font encodings... "
|
||
|
pushd usr/share/fonts/encodings &>/dev/null
|
||
|
mkfontscale -n -e "/usr/share/fonts/encodings" -e "/usr/share/fonts/encodings/large"
|
||
|
popd &>/dev/null
|
||
|
echo "done."
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|