This commit is contained in:
Gwenhael Le Moine 2011-05-29 19:40:53 +07:00
parent 388fd5bbe2
commit ee453d8255

View file

@ -0,0 +1,65 @@
#!/bin/sh
CWD=$(pwd)
PRGNAM=$(basename $CWD)
VERSION=${VERSION:-1.0}
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-DZ-$VERSION.zip ] && wget --no-check-certificate -c "https://github.com/downloads/andreberg/Meslo-Font/Meslo%20LG%20DZ%20v$VERSION.zip" -O $CWD/$PRGNAM-DZ-$VERSION.zip
unzip $CWD/$PRGNAM-DZ-$VERSION.zip
[ ! -e $CWD/$PRGNAM-$VERSION.zip ] && wget --no-check-certificate -c "https://github.com/downloads/andreberg/Meslo-Font/Meslo%20LG%20v$VERSION.zip" -O $CWD/$PRGNAM-$VERSION.zip
unzip $CWD/$PRGNAM-$VERSION.zip
find . -type f -not -iname \*.ttf -exec mv {} $PKG/usr/doc/$PRGNAM \;
find . -type f -iname \*.ttf -exec mv {} . \;
find . -type d -delete
# 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: https://github.com/andreberg/Meslo-Font
$PRGNAM:
EOF
# Build the package:
cd $PKG
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz