#!/bin/sh # Heavily based on the Slackware 12.1 SlackBuild # FIGlet # http://www.figlet.org/ # The Italian Slackware Community # http://www.slacky.eu/ # Packager anycolouryoulike NAME=figlet VERSION=2.2.2 ARCH=i486 BUILD=2an TARBALL=figlet222 ARCHIVE=tar.gz SOURCE=ftp://ftp.figlet.org/pub/figlet/program/unix/$TARBALL.$ARCHIVE CWD=$(pwd) TMP=/tmp/tgz/$NAME-$VERSION-$BUILD PKG=/tmp/package if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O3 -march=i686 -pipe -fomit-frame-pointer" elif [ "$ARCH" = "athlon64" ]; then SLKCFLAGS="-O2 -march=athlon64 -pipe" elif [ "$ARCH" = "athlonxp" ]; then SLKCFLAGS="-O3 -march=athlon-xp -pipe -fomit-frame-pointer" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi download_source() { if [ ! -f $TARBALL.$ARCHIVE ]; then wget $SOURCE fi } clean_directories() { if [ ! -d $TMP ]; then mkdir -p $TMP else rm -rf $TMP/* fi if [ ! -d $PKG ]; then mkdir -p $PKG else rm -rf $PKG/* fi } explode_archive() { case $ARCHIVE in tar.gz|tgz) tar xvzf $CWD/$TARBALL.$ARCHIVE ;; tar.bz2) tar xvjf $CWD/$TARBALL$ARCHIVE ;; esac } set_permissions() { chown -R root:root . find -perm 664 -exec chmod 644 {} \; find -perm 600 -exec chmod 644 {} \; find -perm 444 -exec chmod 644 {} \; find -perm 400 -exec chmod 644 {} \; find -perm 440 -exec chmod 644 {} \; find -perm 777 -exec chmod 755 {} \; find -perm 775 -exec chmod 755 {} \; find -perm 511 -exec chmod 755 {} \; find -perm 711 -exec chmod 755 {} \; find -perm 555 -exec chmod 755 {} \; } copy_docs() { if [ ! -d $PKG/usr/doc/$NAME-$VERSION ]; then mkdir -p $PKG/usr/doc/$NAME-$VERSION fi cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild for FILE in AUTHORS ChangeLog CHANGES COPYING DOCS FAQ INSTALL LICENSE NEWS README TODO do if [ -s $FILE ]; then cp -a $FILE $PKG/usr/doc/$NAME-$VERSION/ fi done mkdir $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc } strip_files() { find | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 2> /dev/null gzip -9 usr/man/man?/*.? 2> /dev/null } download_source clean_directories cd $TMP || exit 1 explode_archive cd $TARBALL || exit 1 set_permissions sed -i 's/^\(CFLAGS = .*\)$/\1 '"$SLKCFLAGS"'/' Makefile make DESTDIR=/usr/bin MANDIR=/usr/man/man6 DEFAULTFONTDIR=/usr/share/figlet || exit 1 mkdir -p $PKG/usr/man/man6 $PKG/usr/bin make install DESTDIR=$PKG/usr/bin MANDIR=$PKG/usr/man/man6 DEFAULTFONTDIR=$PKG/usr/share/figlet || exit 1 copy_docs cd $PKG || exit 1 strip_files requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP rm -rf $PKG fi exit 0