aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/msttf/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'chinese/msttf/pkg-install')
-rw-r--r--chinese/msttf/pkg-install28
1 files changed, 0 insertions, 28 deletions
diff --git a/chinese/msttf/pkg-install b/chinese/msttf/pkg-install
deleted file mode 100644
index d34cb82d4e9d..000000000000
--- a/chinese/msttf/pkg-install
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-if [ "$2" = "PRE-INSTALL" ]; then
- exit 0
-fi
-
-PKGNAME=$1
-PREFIX=${PKG_PREFIX}
-TTFM=${PREFIX}/bin/ttfm.sh
-
-FONTDIR=${PREFIX}/share/fonts/TrueType
-FONTS="simhei.ttf simsun.ttc tahoma.ttf"
-
-if [ ! -x $TTFM ]; then
- echo "$TTFM not found!"
- exit 1
-fi
-
-rm -f $FONTDIR/$PKGNAME
-
-if [ "X$WITHOUT_X" = "X" ]; then
- for f in $FONTS; do
- $TTFM --add xttfm $FONTDIR/$f
- done
- echo "xttfm" >> $FONTDIR/$PKGNAME
-fi
-
-exit 0