summaryrefslogblamecommitdiff
path: root/japanese/truetypefonts/pkg-install
blob: 5797b21a4c0221dcc11b45b4a49982bc7d572a0e (plain) (tree)
1
2
3
4
5
6
         
                                            



                                                           











                                                                         
#!/bin/sh
FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType
if [ "$2" = "PRE-INSTALL" ]; then
  echo "Please add ${FONTDIR} to your /etc/XF86Config file"
  exit 0
fi
cd ${FONTDIR}
touch fonts.dir
sed -e '/-watanabe-/d' -e '/-wadalab-/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.truetype | wc -l) - 2 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
sed -e 1d fonts.dir.truetype >> fonts.dir
touch fonts.alias
sed -e '/^-watanabe-/d' -e '/^-wadalab-/d' fonts.alias > fonts.alias.tmp
mv -f fonts.alias.tmp fonts.alias
cat fonts.alias.truetype >> fonts.alias
rm -f fonts.dir.tmp fonts.alias.tmp