#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # http://opensource.bureau-cornavin.com/keurocalc/index.html # Packager Gohanz ( gohanz@infinito.it ) # http://www.slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-keurocalc NAME=keurocalc VERSION=0.9.7 TARGET=i486 ARCH=${ARCH:-i486} BUILD=3as if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -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 xvzf $CWD/$NAME-$VERSION.tgz cd $NAME sed -i -e '/case $AUTO\(CONF\|HEADER\)_VERSION in/,+1 s/2\.5/2.[56]/g' admin/cvs.sh echo "\#\!/usr/bin/perl" > admin/detect-autoconf.pl echo "print <> admin/detect-autoconf.pl echo "AUTOCONF="autoconf"" >> admin/detect-autoconf.pl echo "AUTOHEADER="autoheader"" >> admin/detect-autoconf.pl echo "AUTOM4TE="autom4te"" >> admin/detect-autoconf.pl echo "AUTOMAKE="automake"" >> admin/detect-autoconf.pl echo "ACLOCAL="aclocal"" >> admin/detect-autoconf.pl echo "WHICH="which"" >> admin/detect-autoconf.pl echo "export AUTOCONF AUTOHEADER AUTOM4TE AUTOMAKE ACLOCAL WHICH" >> admin/detect-autoconf.pl echo "EOF" >> admin/detect-autoconf.pl echo "exit 0;" >> admin/detect-autoconf.pl sed -i "s/\\\//g" admin/detect-autoconf.pl make -f admin/Makefile.common chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --disable-debug \ --program-prefix= \ --program-suffix= \ --build=$TARGET-slackware-linux make make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS ChangeLog COPYING INSTALL README TODO $PKG/usr/doc/$NAME-$VERSION ( cd $PKG 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 ) 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 if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi