From 3e0d56f0d6f1caf32cbdb579803970ceec1df1bf Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Thu, 27 Feb 2020 14:47:26 +0100 Subject: [PATCH] Added Encode Sans Signed-off-by: Gwenhael Le Moine --- fonts/EncodeSans/SlackBuild | 69 +++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100755 fonts/EncodeSans/SlackBuild diff --git a/fonts/EncodeSans/SlackBuild b/fonts/EncodeSans/SlackBuild new file mode 100755 index 00000000..0b8ffaaa --- /dev/null +++ b/fonts/EncodeSans/SlackBuild @@ -0,0 +1,69 @@ +#!/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} +REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM +FONTDIR="/usr/share/fonts" + +# 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 + + +[ ! -e $REPOSITORY ] && git clone https://github.com/impallari/Encode-Sans.git $REPOSITORY +cd $REPOSITORY +git pull +VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )" + +# Move the fonts into place: +mkdir -p $PKG$FONTDIR/TTF $PKG/usr/doc/$PRGNAM + +cd $REPOSITORY +cp *.txt *.md $PKG/usr/doc/$PRGNAM +cp fonts/*.ttf $PKG$FONTDIR/TTF + +# Post-install script: +mkdir -p $PKG/install +cat < $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 < $PKG/install/slack-desc +$PRGNAM: $PRGNAM (Encode Sans Fonts) +$PRGNAM: +$PRGNAM: The Encode Sans family is a versatile workhorse. Featuring a huge range of +$PRGNAM: weights and widths, it's ready for all kind of typographic challenges. It +$PRGNAM: also includes Tabular and Old Style figres, as well as full set of Small +$PRGNAM: Caps and other Open Type features. +$PRGNAM: +$PRGNAM: Designed by Pablo Impallari and Andres Torresi. +$PRGNAM: +$PRGNAM: https://github.com/impallari/Encode-Sans +$PRGNAM: +EOF + +# Build the package: +cd $PKG +rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la +makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz