diff options
author | Matthew Fillpot <mfilpot@gmail.com> | 2010-10-20 01:31:09 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-10-20 10:50:47 -0500 |
commit | 2644829c798c150b6ecdfd260b2f05e40db4809d (patch) | |
tree | e11b4ac458952bc5aba30accb82bbd2af07b6c54 /games/warzone2100/warzone2100.SlackBuild | |
parent | fcc89666fc67de07ab0015ced285ce0774c97853 (diff) |
games/warzone2100: Updated for version 2.3.5.
Diffstat (limited to 'games/warzone2100/warzone2100.SlackBuild')
-rw-r--r-- | games/warzone2100/warzone2100.SlackBuild | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/games/warzone2100/warzone2100.SlackBuild b/games/warzone2100/warzone2100.SlackBuild index 439b74abcbd0..f996fc8813a3 100644 --- a/games/warzone2100/warzone2100.SlackBuild +++ b/games/warzone2100/warzone2100.SlackBuild @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=warzone2100 -VERSION=${VERSION:-2.3.4} +VERSION=${VERSION:-2.3.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -64,22 +62,37 @@ cd $TMP tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-s . +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 {} \; CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-data=yes \ --with-distributor=Slackware \ --build=$ARCH-slackware-linux make make install-strip DESTDIR=$PKG + +# No man pages + +# No info files + +find $PKG -name perllocal.pod \ + -o -name ".packlist" \ + -o -name "*.bs" \ + | xargs rm -f + + # Let's not pollute the themed icon directory mv $PKG/usr/share/icons $PKG/usr/share/pixmaps |