92008b7d05
This is handwritten TrueType font-set. See: http://mikachan-font.com Lha use was adviced by sf, thanks.
21 lines
687 B
Bash
21 lines
687 B
Bash
#!/bin/sh
|
|
FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
if [ ! -d ${FONTDIR} ]; then
|
|
echo "*********************************************************"
|
|
echo "Please add ${FONTDIR} to your font path"
|
|
echo "and load 'xtt' module in /etc/XF86Config."
|
|
echo "*********************************************************"
|
|
mkdir $FONTDIR
|
|
fi
|
|
exit 0
|
|
fi
|
|
cd ${FONTDIR}
|
|
touch fonts.dir
|
|
sed -e '/-mikachan-/d' fonts.dir > fonts.dir.tmp
|
|
numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.mika | wc -l) - 2 | bc)
|
|
echo ${numfonts} > fonts.dir
|
|
sed -e 1d fonts.dir.tmp >> fonts.dir
|
|
sed -e 1d fonts.dir.mika >> fonts.dir
|
|
rm -f fonts.dir.tmp fonts.alias.tmp
|