#!/bin/sh # Heavily based on the Slackware 12.1 SlackBuild # Requirements: ncurses, alsa-lib # http://moc.daper.net/ # Packager baldelario ~at~ gmail ~dot~ com # http://www.slacky.it NAME=moc VERSION=2.4.3 TARGET=${TARGET:-i486-slackware-linux} ARCH=${ARCH:-i486} BUILD=1bj CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-moc rm -rf $PKG mkdir -p $PKG if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi cd $TMP rm -rf $NAME-$VERSION tar xjvf $CWD/$NAME-$VERSION.tar.bz2 cd $NAME-$VERSION chown -R root:root . CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --mandir=/usr/man \ --disable-debug \ --program-prefix= \ --program-suffix= \ --target=$TARGET make && make install DESTDIR=$PKG gzip -9 $PKG/usr/man/man1/* mv $PKG/usr/share/doc $PKG/usr mv $PKG/usr/doc/$NAME $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS COPYING NEWS INSTALL 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 requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi