mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
11 lines
265 B
Text
11 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
|
|
}
|