#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # Requirements: wxwidgets (unicode) # http://www.amule.org/ # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package NAME=amule VERSION=2.1.3 CHOST=i486 ARCH=${ARCH:-i486} BUILD=1sl rm -rf $PKG mkdir -p $PKG 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 cd $TMP mkdir -p $PKG/usr tar xjvf $CWD/aMule-$VERSION.tar.bz2 cd aMule-$VERSION cat $CWD/aMule-wx.patch | patch -p1 -E --backup --verbose chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --disable-debug \ --enable-amulecmd \ --enable-webserver \ --enable-cas \ --enable-wxcas \ --enable-alc \ --enable-alcc \ --enable-amule-daemon \ --program-prefix= \ --program-suffix= \ --build=$CHOST-slackware-linux read make make install DESTDIR=$PKG cp $CWD/*.desktop $PKG/usr/share/applications 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 mv $PKG/usr/share/man $PKG/usr/ find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$NAME-$VERSION cp $PKG/usr/share/doc/aMule-$VERSION/* $PKG/usr/doc/$NAME-$VERSION rm -rf $PKG/usr/share/doc 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 fi