#!/bin/sh # Slackware build script for ded # Written by slakmagik # Released under the WTFPL PRGNAM=ded VERSION=20060905 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" fi set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tgz cd $PRGNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -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 {} \; # this is the most minimal change I could manage and still get an operable # helpfile out of bin - be sure to keep this pointing to the full pathname # (minus extension) of the ded.hlp file sed -i~ 's|howami, whoami|howami, "/usr/share/ded/ded"|' src/ded.c CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" ./configure --prefix=/usr make # the makefile does so little of this, let's just do it all mkdir -p $PKG/usr/{bin,man/man1,share/ded} cp bin/ded $PKG/usr/bin cp bin/ded.hlp $PKG/usr/share/ded gzip -9c user/ded.man > $PKG/usr/man/man1/ded.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a [CR]* $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 cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz