Added DinaTTF

This commit is contained in:
Gwenhael Le Moine 2011-05-25 22:34:26 +07:00
parent a94878dff7
commit 71e7f21d86

View file

@ -0,0 +1,61 @@
#!/bin/sh
CWD=$(pwd)
PRGNAM=$(basename $CWD)
VERSION=${VERSION:-.1}
ARCH=noarch
BUILD=${BUILD:-1}
TAG=${TAG:-cyco}
# Place to build (TMP) package (PKG) and output (OUTPUT) the program:
TMP=${TMP:=/tmp/$TAG}
PKG=$TMP/pkg-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# Create working directories:
rm -rf $PKG
mkdir -p $OUTPUT
mkdir -p $PKG
FONTDIR=/usr/share/fonts/TTF
# Move the fonts into place:
mkdir -p $PKG$FONTDIR $PKG/usr/doc/$PRGNAM
cd $PKG$FONTDIR/
[ ! -e $CWD/$PRGNAM.zip ] && wget -c "https://sites.google.com/site/rickard234/filecabinet/DinaTTF.zip?attredirects=0&d=1" -O $CWD/$PRGNAM.zip
unzip $CWD/$PRGNAM.zip
mv *.txt $PKG/usr/doc/$PRGNAM
# Post-install script:
mkdir -p $PKG/install
cat <<EOT > $PKG/install/doinst.sh
# Update X font indexes and the font cache:
if [ -x .$XPREF/bin/mkfontdir ]; then
chroot . $XPREF/bin/mkfontscale $FONTDIR
chroot . $XPREF/bin/mkfontdir $FONTDIR
fi
if [ -x .$XPREF/bin/fc-cache ]; then
chroot . $XPREF/bin/fc-cache -f $FONTDIR
fi
EOT
# Add a package description:
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
$PRGNAM: $PRGNAM (monospace font)
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: http://chrisrickard.blogspot.com/2010/03/dina-font-for-visual-studio-2010.html
$PRGNAM:
EOF
# Build the package:
cd $PKG
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz