#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://www.secretmaryo.org # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.it # # Required: cegui, freeglut, freeimage # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=smc PKG=$TMP/package/$NAME VERSION=1.9 MUSICPACK=4.1 ARCH=${ARCH:-i486} BUILD=1as SOURCE=http://garr.dl.sourceforge.net/sourceforge/smclone/$NAME-$VERSION.tar.bz2 if [ ! -e $NAME-$VERSION.tar.bz2 ]; then wget -c $SOURCE fi SOURCE=http://surfnet.dl.sourceforge.net/sourceforge/smclone/SMC_Music_${MUSICPACK}'_'high.zip if [ ! -e SMC_Music_${MUSICPACK}'_'high.zip ]; 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 Secret Maryo Chronicles |\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 . LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --disable-static \ --mandir=/usr/man \ --program-prefix= \ --program-suffix= \ --build=$ARCH-slackware-linux make make install DESTDIR=$PKG # Installing extra music package unzip -o $CWD/SMC_Music_${MUSICPACK}'_'high.zip mv -v data/music $PKG/usr/share/smc # Installing icon and desktop. mkdir -p ${PKG}/usr/share/applications cat << EOF > $PKG/usr/share/applications/secretmaryochronicles.desktop [Desktop Entry] Name=Secret Maryo Chronicles Name[it]=Secret Maryo Chronicles GenericName=A platform game GenericName[it]=Platform game 2D Comment=Secret Maryo Chronicles is an Open Source two-dimensional platform game. Comment[it]=Secret Maryo Chronicles รจ un clone Open Source del conosciuto SuperMario Exec=smc Icon=/usr/share/smc/icon/window_32.png Terminal=false Type=Application Categories=Application;Game; EOF mkdir -p $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/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild ( 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 find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 2> /dev/null ) 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 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 cd $PKG requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/secretmaryochronicles-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi