diff options
author | core <eroc@linuxmail.org> | 2010-05-11 20:02:09 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:02:09 +0200 |
commit | 0cbdb460b9714b854b8aeb4ab02d0baf55201b7b (patch) | |
tree | 4602ee33a8516bd23749e33acbf24bfa1bba8279 /system/terminus-font/doinst.sh | |
parent | f6bfc6421fad3610efaab545abc419e16d5ba993 (diff) | |
download | slackbuilds-0cbdb460b9714b854b8aeb4ab02d0baf55201b7b.tar.gz |
system/terminus-font: Added to 12.0 repository
Diffstat (limited to 'system/terminus-font/doinst.sh')
-rw-r--r-- | system/terminus-font/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/terminus-font/doinst.sh b/system/terminus-font/doinst.sh new file mode 100644 index 0000000000..5b336a942f --- /dev/null +++ b/system/terminus-font/doinst.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# Update mkfontscale and mkfontdir: +if [ -x /usr/bin/mkfontdir ]; then + ( cd /usr/share/fonts/local + mkfontscale . + mkfontdir . + ) +fi + +# Update the X font indexes: +if [ -x /usr/bin/fc-cache ]; then + /usr/bin/fc-cache -f +fi + +# For some versions before Slackware 12.0 +if [ -x /usr/X11R6/bin/mkfontdir ]; then + ( cd /usr/X11R6/lib/X11/fonts/local + mkfontscale . + mkfontdir . + ) +fi + +if [ -x /usr/X11R6/bin/fc-cache ]; then + /usr/bin/fc-cache -f +fi |