#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://jag.xlabsoft.com # Packager Andrea Sciucca Gohanz ( gohanz at infinito.it) # http://www.slacky.it # # # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=jag PKG=$TMP/package/$NAME VERSION=0.3.1 ARCH=${ARCH:-i486} BUILD=1as 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 unzip -o $CWD/$NAME-$VERSION-src.zip echo -e "\E[0;32m+----------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild JAG |\E[0;0m" echo -e "\E[0;32m+----------------------+\E[0;0m" cd $NAME-$VERSION-src 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/games cat << EOF > $PKG/usr/games/jag #!/bin/bash cd /usr/share/games/jag/bin exec /usr/share/games/jag/bin/jag EOF chmod 755 $PKG/usr/games/* mkdir -p $PKG/usr/share/games/jag/bin # Configure: qmake -unix PREFIX=/usr QMAKE_LIBS="$SLKLDFLAGS" QMAKE_CFLAGS="$SLKCFLAGS" QMAKE_CXXFLAGS="$SLKCFLAGS" -o Makefile Game.pro # Build and install: LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ make install -m 755 -p bin/jag $PKG/usr/share/games/jag/bin cp -a -r data $PKG/usr/share/games/jag # Installing some additional levels ( cd $PKG/usr/share/games/jag/data/levels unzip -o $CWD/levels/jag_levels_sunzero.zip ) # Installing some additional themes ( cd $PKG/usr/share/games/jag/data/schemes for i in $CWD/themes/*.zip; do unzip -o $i; done ) mkdir -p $PKG/usr/share/applications cat << EOF > $PKG/usr/share/applications/$NAME.desktop [Desktop Entry] Type=Application Encoding=UTF-8 Name=JAG Name[it]=JAG GenericName=Arcade-puzzle 2D game GenericName[it]=Gioco arcade-puzzle 2D Comment=The aim of JAG is to break all of the target pieces on each level Comment[it]=Lo scopo di JAG rompere tutti i bersagli per ogni livello Icon=/usr/share/pixmaps/jag.png Exec=jag Terminal=false StartupNotify=true Categories=Qt;Application;Game; EOF mkdir -p $PKG/usr/share/pixmaps cp -a $CWD/jag.png $PKG/usr/share/pixmaps/jag.png mkdir -p $PKG/usr/doc/$NAME-$VERSION/SlackBuild 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-mime-database ]; then /usr/bin/update-mime-database /usr/share/mime &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh 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 strip --strip-unneeded $PKG/usr/share/games/jag/bin/* 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