summaryrefslogtreecommitdiffstats
path: root/misc/tamsyn-font/tamsyn-font.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'misc/tamsyn-font/tamsyn-font.SlackBuild')
-rw-r--r--misc/tamsyn-font/tamsyn-font.SlackBuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/misc/tamsyn-font/tamsyn-font.SlackBuild b/misc/tamsyn-font/tamsyn-font.SlackBuild
deleted file mode 100644
index bf97ce02fc..0000000000
--- a/misc/tamsyn-font/tamsyn-font.SlackBuild
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/sh
-
-# Slackware package build script for proggyfonts
-
-# Written by Moritz Wilhelmy, moritz plus slackware at wzff dot de
-#
-# Redistribution and use with or without modification are permitted.
-# There is ABSOLUTELY NO WARRANTY, express or implied.
-
-PRGNAM=tamsyn-font
-VERSION=${VERSION:-1.10}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-ARCH=${ARCH:-noarch}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-install -d $PKG/usr/share/fonts/misc $PKG/usr/share/kbd/consolefonts
-gzip -9 *.pcf
-cp *.pcf.gz $PKG/usr/share/fonts/misc
-cp *.psf.gz $PKG/usr/share/kbd/consolefonts
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a README LICENSE $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}