#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://qt-apps.org/content/show.php/Neformal?content=103003 # Packager Andrea Sciucca Gohanz ( gohanz at infinito.it) # http://www.slacky.eu # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=neformal PKG=$TMP/package/$NAME VERSION=4.3.0 ARCH=${ARCH:-i486} BUILD=1as SOURCE=http://downloads.sourceforge.net/project/neformal/neformal/$VERSION/$NAME-$VERSION.tar.bz2 if [ ! -e $NAME-$VERSION.tar.bz2 ]; then wget -c $SOURCE fi if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC"; SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvjf $CWD/$NAME-$VERSION.tar.bz2 echo -e "\E[0;32m+---------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild Neformal |\E[0;0m" echo -e "\E[0;32m+---------------------------+\E[0;0m" cd $NAME-$VERSION find . -perm 666 -exec chmod 644 {} \; 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 {} \; chown -R root:root . mkdir -p $PKG/usr/bin cat << EOF > $PKG/usr/bin/neformal #!/bin/bash cd /usr/share/neformal exec /usr/share/neformal/neformal EOF chmod 755 $PKG/usr/bin/* # Configure: qmake -unix PREFIX=/usr QMAKE_LIBS="$SLKLDFLAGS" QMAKE_CFLAGS="$SLKCFLAGS" QMAKE_CXXFLAGS="$SLKCFLAGS" -o Makefile neformal.pro # Build and install: LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ make install -m 755 -p -D bin/neformal $PKG/usr/share/neformal/neformal install -m 644 -p -D $CWD/neformal.svg $PKG/usr/share/pixmaps/neformal.svg cp -a -r {icons,manuals,res,translations} $PKG/usr/share/neformal mkdir -p $PKG/usr/share/applications cat << EOF > $PKG/usr/share/applications/$NAME.desktop [Desktop Entry] Type=Application Encoding=UTF-8 Name=Neformal GenericName=Audio Player GenericName[it]=Lettore Audio Comment=Small Qt-Phonon-based player Comment[it]=Leggero lettore audio basato sulle librerie Qt-Phonon Icon=/usr/share/pixmaps/neformal.svg Exec=neformal Terminal=false StartupNotify=true Categories=Application;Qt;Audio; EOF mkdir -p $PKG/usr/doc/$NAME-$VERSION/SlackBuild cp -a AUTHORS COPYING ChangeLog INSTALL NEWS* README TODO \ $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/$NAME.SlackBuild echo "if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh echo "if [ -x /usr/bin/gtk-update-icon-cache ]; then /usr/bin/gtk-update-icon-cache -f -q /usr/share/icons/hicolor &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh strip --strip-unneeded $PKG/usr/share/neformal/neformal cd $PKG requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi