#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # http://www.abisource.com/ # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-abiword-plugins NAME=abiword-plugins VERSION=2.5.2 CHOST=i486 ARCH=${ARCH:-i586} BUILD=1vl59 if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xzvf $CWD/$NAME-$VERSION.tar.gz cd $NAME-$VERSION find . \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) -exec chmod 755 {} \; find . \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/man \ --with-included-gettext \ --with-abiword=/tmp/abiword-2.5.2/ \ --with-abicollab-sugar-backend \ --disable-abigoffice \ --disable-abigrammar \ --disable-abimathview \ --disable-abiscan \ --disable-gda \ --disable-wpg \ --disable-OpenXML \ --disable-xhtml \ --program-prefix= \ --program-suffix= \ --build=$CHOST-slackware-linux read make -j4 || exit 1 make install DESTDIR=$PKG || exit 1 mkdir -p $PKG/usr/doc/$NAME-$VERSION cp README $PKG/usr/doc/$NAME-$VERSION 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 cd $PKG #requiredbuilder -v -y -s $CWD $PKG #makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz makeslapt --tlz $NAME-$VERSION-$ARCH-$BUILD.tlz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi