diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2010-09-17 04:26:07 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-21 22:09:36 -0500 |
commit | e929e71cde39f44840a49a2f8f4ad752faec0e4e (patch) | |
tree | af256928fa3fd5835476451ce422ebea3d49857e /games/glest-data/glest-data.SlackBuild | |
parent | 1df77dab718de9727d53a59f319ff75fa42ac53b (diff) |
games/glest-data: Removed (replaced by glestae)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/glest-data/glest-data.SlackBuild')
-rw-r--r-- | games/glest-data/glest-data.SlackBuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/games/glest-data/glest-data.SlackBuild b/games/glest-data/glest-data.SlackBuild deleted file mode 100644 index 16c8fd8fb5..0000000000 --- a/games/glest-data/glest-data.SlackBuild +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -# Slackware build script for glest-data - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=glest-data -VERSION=${VERSION:-3.2.1} -ARCH=noarch -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -SRCNAM=$(echo "${PRGNAM}" | tr - _) - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf glest_game -unzip $CWD/${SRCNAM}_$VERSION.zip -cd glest_game -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -mkdir -p $PKG/usr/share/glest -cp -ar data maps scenarios techs tilesets servers.ini $PKG/usr/share/glest -install -m 0644 $CWD/langs/*.lng $PKG/usr/share/glest/data/lang/ - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -# Remove unnecessary files. -find $PKG -name 'Thumbs.db' -exec rm {} \; - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |