#!/bin/sh # Heavily based on the Slackware 12.1 SlackBuild # Packager Salbutamolo (alessandro_ranieri@alice.it) # http://www.mythtv.org/ CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-mythplugins NAME=mythplugins VERSION=$(date +%Y%m%d) TARGET=i486 ARCH=${ARCH:-i486} BUILD=1sal QMAKE=/opt/qt4/bin/qmake SOURCE=http://svn.mythtv.org/svn/trunk/mythplugins 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 svn co $SOURCE || exit 1 cd $NAME chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --qmake=$QMAKE \ --arch=i486 \ --tune=i686 \ --cpu=i486 \ --enable-all \ --disable-mythbrowser \ --disable-mythcontrols \ --disable-mythflix \ --disbale-mythgame \ --disable-mythphone \ --disable-festival $QMAKE $NAME.pro make || exit 1 find . -perm 777 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; INSTALL_ROOT=$PKG make install mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a COPYING README $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 chown -R root:root $PKG/usr/doc/$NAME-$VERSION 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