From 702f9a09a92fd540d5be6d3b59017838038c636e Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Sun, 31 Mar 2013 15:47:01 +0200 Subject: [PATCH] add FortAwesome's Font Awesome --- fonts/Font-Awesome/Font-Awesome.SlackBuild | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100755 fonts/Font-Awesome/Font-Awesome.SlackBuild diff --git a/fonts/Font-Awesome/Font-Awesome.SlackBuild b/fonts/Font-Awesome/Font-Awesome.SlackBuild new file mode 100755 index 00000000..e8374dea --- /dev/null +++ b/fonts/Font-Awesome/Font-Awesome.SlackBuild @@ -0,0 +1,68 @@ +#!/bin/sh + +PRGNAM=$(basename $(pwd)) +VERSION=${VERSION:-$(date +%F | tr - .)} +ARCH=font +BUILD=${BUILD:-1} +TAG=${TAG:-cyco} + +CWD=$(pwd) + +# 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: +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,makepkg}-$PRGNAM.log + # remove old log files +REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM +FONTDIR="/usr/share/fonts" + +[ ! -e $REPOSITORY ] \ + && git clone https://github.com/FortAwesome/Font-Awesome.git $REPOSITORY \ + || (cd $REPOSITORY && git pull) + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR/{OTF,TTF} $PKG/usr/doc/ +cp -R $REPOSITORY $PKG/usr/doc/$PRGNAM +rm -fr $PKG/usr/doc/$PRGNAM/.git{ignore,} +cp $REPOSITORY/font/*.ttf $PKG$FONTDIR/TTF +cp $REPOSITORY/font/*.otf $PKG$FONTDIR/OTF + +# Post-install script: +mkdir -p $PKG/install +cat < $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 < $PKG/install/slack-desc +$PRGNAM: $PRGNAM (Iconic font) +$PRGNAM: +$PRGNAM: The iconic font designed for use with Twitter Bootstrap +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: http://fortawesome.github.com/Font-Awesome/ +$PRGNAM: +EOF + +# Build the package: +cd $PKG +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz +