67 lines
1.6 KiB
Bash
Executable file
67 lines
1.6 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
PRGNAM=CentSchBook-Mono
|
|
VERSION=${VERSION:-$(date +"%Y.%m.%d_%H:%M")}
|
|
ARCH=font
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-gwh}
|
|
|
|
CWD=$(pwd)
|
|
|
|
# Place to build (TMP) package (PKG) and output (OUTPUT) the program:
|
|
TAG=gwh
|
|
TMP=/tmp/$TAG
|
|
PKG=$TMP/pkg-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
# Create working directories:
|
|
mkdir -p $OUTPUT # place for the package to be saved
|
|
mkdir -p $PKG # place for the package to be built
|
|
rm -rf $PKG/* # always erase old package's contents
|
|
rm -rf $OUTPUT/{configure,make,install,error,/sbin/makepkg}-$PRGNAM.log
|
|
# remove old log files
|
|
|
|
FONTDIR="/usr/share/fonts"
|
|
|
|
# Move the fonts into place:
|
|
mkdir -p $PKG$FONTDIR/TTF
|
|
|
|
( cd $PKG$FONTDIR/TTF
|
|
[ ! -e $CWD/Century-Schoolbook-Monospace-BT.ttf ] && ( cd $CWD ; wget -c http://foohack.com/tpl/fonts/$PRGNAM/Century-Schoolbook-Monospace-BT.ttf )
|
|
cp $CWD/Century-Schoolbook-Monospace-BT.ttf .
|
|
)
|
|
|
|
# Post-install script:
|
|
mkdir -p $PKG/install
|
|
cat <<EOT > $PKG/install/doinst.sh
|
|
# Update X font indexes and the font cache:
|
|
if [ -x ./usr/bin/mkfontdir ]; then
|
|
chroot . /usr/bin/mkfontscale $FONTDIR
|
|
chroot . /usr/bin/mkfontdir $FONTDIR
|
|
fi
|
|
if [ -x ./usr/bin/fc-cache ]; then
|
|
chroot . /usr/bin/fc-cache -f $FONTDIR
|
|
fi
|
|
EOT
|
|
|
|
# Add a package description:
|
|
mkdir -p $PKG/install
|
|
cat <<EOF > $PKG/install/slack-desc
|
|
$PRGNAM: $PRGNAM (font)
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM: http://foohack.com/tpl/fonts/Hoefler-Text/
|
|
$PRGNAM:
|
|
EOF
|
|
|
|
# Build the package:
|
|
cd $PKG
|
|
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
|
/sbin/makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz
|
|
|