#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # Requirements: libgpod, mpeg4ip # http://www.gtkpod.org TMP=/tmp if [ ! -d $TMP ]; then mkdir -p $TMP fi CWD=`pwd` PKG=$TMP/package-gtkpod rm -rf $PKG mkdir -p $PKG VERSION=0.99.8 ARCH=${ARCH:-i486} BUILD=${BUILD:-3lag} if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi cd $TMP tar xzvf $CWD/gtkpod-$VERSION-for-libgpod-0.4.2.tar.gz cd gtkpod-$VERSION chown -R root:root . find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --program-prefix="" \ --program-suffix="" \ --build=$ARCH-slackware-linux make -j3 make install DESTDIR=$PKG ( 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/usr/doc/gtkpod-$VERSION cp -a AUTHORS COPYING INSTALL NEWS README \ $PKG/usr/doc/gtkpod-$VERSION chmod 644 $PKG/usr/doc/gtkpod-$VERSION/* mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/gtkpod-$VERSION/slack-desc cat $CWD/gtkpod.SlackBuild > $PKG/usr/doc/gtkpod-$VERSION/$NAME.SlackBuild cd $PKG requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/gtkpod-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP/gtkpod-$VERSION rm -rf $PKG fi