diff options
Diffstat (limited to 'games/wesnoth/wesnoth.SlackBuild')
-rw-r--r-- | games/wesnoth/wesnoth.SlackBuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/games/wesnoth/wesnoth.SlackBuild b/games/wesnoth/wesnoth.SlackBuild index f5bcdc0073..afb0c91bf5 100644 --- a/games/wesnoth/wesnoth.SlackBuild +++ b/games/wesnoth/wesnoth.SlackBuild @@ -6,10 +6,11 @@ # Modified by the SlackBuilds.org project NAME=wesnoth -VERSION=1.2.4 +VERSION=1.4 +ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -ARCH=${ARCH:-i486} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$NAME @@ -28,20 +29,23 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT rm -rf $TMP/$NAME-$VERSION cd $TMP || exit 1 -tar -xjvf $CWD/$NAME-$VERSION.tar.bz2 || exit 1 +tar xvf $CWD/$NAME-$VERSION.tar.bz2 || exit 1 cd $NAME-$VERSION || exit 1 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 \ --localstatedir=/var \ --sysconfdir=/etc \ + --docdir=/usr/doc/$NAME-$VERSION \ --mandir=/usr/man \ --enable-python \ - --enable-server \ - --enable-campaign-server \ --enable-editor \ --enable-tools \ --disable-debug \ @@ -54,18 +58,14 @@ CXXFLAGS="$SLKCFLAGS" \ make || exit 1 make install-strip DESTDIR=$PKG || exit 1 -if [ -d $PKG/usr/man ]; then ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) -fi mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a $DOCFILES $PKG/usr/doc/$NAME-$VERSION cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild -sed -i 's#Icon=wesnoth-icon.png#Icon=/usr/share/icons/wesnoth-icon.png#' \ - $PKG/usr/share/applications/$NAME.desktop mkdir $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |