#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # Packager baldelario ~at~ gmail ~dot~ com # http://www.slacky.it # http://tukaani.org/lzma/ - http://7-zip.org/sdk.html CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-lzma rm -rf $PKG mkdir -p $PKG NAME=lzma VERSION=4.32.0beta3 TARGET=i486 ARCH=${ARCH:-i486} BUILD=1bj if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O3 -fomit-frame-pointer -pipe -march=i686 -mtune=i686" fi cd $TMP rm -rf $NAME-$VERSION tar xzf $CWD/$NAME-$VERSION.tar.gz cd $NAME-$VERSION chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --disable-static \ $TARGET-slackware-linux make make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS ChangeLog COPYING* INSTALL NEWS README THANKS \ $PKG/usr/doc/$NAME-$VERSION gzip -9qf $PKG/usr/man/*/* cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -d : -f 1 | xargs -r strip --strip-unneeded find . | xargs file | grep "shared object" | grep ELF | cut -d : -f 1 | xargs -r strip --strip-unneeded find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs -r strip --strip-debug mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP/$NAME-$VERSION rm -rf $PKG fi