#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # http://members.jcom.home.ne.jp/jacobi/linux/softwares.html # Packager Zapotech (zapotech2000 at yahoo.it) # http://www.slacky.eu # Depends From: pciutils, zlib CWD=`pwd` if ["$TMP" = ""]; then TMP=/tmp/tgz fi NAME=athcool VERSION=0.3.12 PKG=$TMP/pkg-$NAME-$VERSION CHOST=i486 ARCH=${ARCH:-i486} BUILD=2fv if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O3 -march=i686 -pipe -fomit-frame-pointer" elif [ "$ARCH" = "athlon64" ]; then SLKCFLAGS="-O2 -march=athlon64 -pipe" elif [ "$ARCH" = "athlonxp" ]; then SLKCFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer" 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 zxvf $CWD/$NAME-$VERSION.tar.gz cd $NAME-$VERSION chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ # For athcool to be successfully compiled, the Makefile must be patched in order to get the right links libraries: pci, zlib. patch -p0 < $CWD/patch make make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a C* README $PKG/usr/doc/$NAME-$VERSION gzip -9 $PKG/usr/share/man/man8/* 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 -f1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 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 requiredbuilder -v -y -s $CWD $PKG echo "pciutils >= 2.2.10-i486-1" >> $CWD/slack-required makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi