#!/bin/sh # Slackware build script for z26 # Written by B. Watson (yalhcru@gmail.com) # # Modified by SlackBuilds.org PRGNAM=z26 VERSION=${VERSION:-2.13} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} # The distribution tarball is actually a snapshot that got # "promoted" to being the 2.13 release, but never got repacked, # so the top-level directory is z26_snapshot-$date # (nevertheless, this is the official 2.13 source release, or as close # as we're going to get) SNAPVER=${SNAPVER:-${PRGNAM}_snapshot-20040523} TARBALL=${TARBALL:-${PRGNAM}v213.tar.gz} 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 $SNAPVER tar xvf $CWD/$TARBALL cd $SNAPVER chown -R root:root . chmod -R a-s,u+w,go+r-w . make linux CFLAGS="$SLKCFLAGS" make $PRGNAM.man make docs mkdir -p $PKG/usr/bin $PKG/usr/man/man1 install -m0755 -o root -g root $PRGNAM $PKG/usr/bin gzip -9c $PRGNAM.man > $PKG/usr/man/man1/$PRGNAM.1.gz rm -rf doc/CVS mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp doc/* *.txt *.TXT $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/usr/share/pixmaps cp ${PRGNAM}_icon.png $PKG/usr/share/pixmaps/$PRGNAM.png 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