diff options
Diffstat (limited to 'abs/extra/ttf-liberation/ttf.install')
-rw-r--r-- | abs/extra/ttf-liberation/ttf.install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/abs/extra/ttf-liberation/ttf.install b/abs/extra/ttf-liberation/ttf.install new file mode 100644 index 0000000..7d26d0c --- /dev/null +++ b/abs/extra/ttf-liberation/ttf.install @@ -0,0 +1,16 @@ +post_install() { + echo -n "Updating font cache... " + fc-cache -f > /dev/null + mkfontscale /usr/share/fonts/TTF + mkfontdir /usr/share/fonts/TTF + echo "done." +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} + |