summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Black Rider <black_rider@esdebian.org>2014-07-08 08:00:17 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-07-08 08:00:17 +0700
commit5061d80140edc996095a75f7c5f6001eda3dccf1 (patch)
tree4807c283eb692dcf002665c0f97c2d028a8a2167 /games
parentf94a1079e79e370c8ceda99eff667ec729c5517c (diff)
downloadslackbuilds-5061d80140edc996095a75f7c5f6001eda3dccf1.tar.gz
slackbuilds-5061d80140edc996095a75f7c5f6001eda3dccf1.tar.xz
games/hedgewars: Updated for version 0.9.20.5.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/hedgewars/hedgewars.SlackBuild54
-rw-r--r--games/hedgewars/hedgewars.info6
2 files changed, 31 insertions, 29 deletions
diff --git a/games/hedgewars/hedgewars.SlackBuild b/games/hedgewars/hedgewars.SlackBuild
index ce812e6bd3..36fe03ef31 100644
--- a/games/hedgewars/hedgewars.SlackBuild
+++ b/games/hedgewars/hedgewars.SlackBuild
@@ -2,25 +2,31 @@
# SlackBuild script for Hedgewars.
-# This script is of public domain. It can be distributed, modified and used as desired.
-
# Black Rider [black_rider@esdebian.org]
-
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=hedgewars
-VERSION=${VERSION:-0.9.19.3}
+VERSION=${VERSION:-0.9.20.5}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+SRC_VERSION=${SRC_VERSION:-0.9.20}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -54,15 +60,15 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
-rm -rf $PRGNAM-src-$VERSION
+rm -rf $PRGNAM-src-$SRC_VERSION
tar xvjf $CWD/$PRGNAM-src-$VERSION.tar.bz2
-cd $PRGNAM-src-$VERSION
+cd $PRGNAM-src-$SRC_VERSION
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
mkdir -p build
cd build
@@ -70,8 +76,6 @@ cd build
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -DMAN_INSTALL_DIR=/usr/man \
-DNOVIDEOREC=1 \
-DNOSERVER=1 \
-DCMAKE_BUILD_TYPE=Release ..
@@ -81,15 +85,13 @@ cd ..
# Include the man page.
mkdir -p $PKG/usr/man/man6
-cp $TMP/$PRGNAM-src-$VERSION/man/hedgewars.6 $PKG/usr/man/man6
+cp $TMP/$PRGNAM-src-$SRC_VERSION/man/hedgewars.6 $PKG/usr/man/man6
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- COPYING INSTALL CREDITS README Fonts_LICENSE.txt ChangeLog.txt \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a COPYING INSTALL CREDITS README Fonts_LICENSE.txt ChangeLog.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/games/hedgewars/hedgewars.info b/games/hedgewars/hedgewars.info
index 1906a75078..fb03e38bcf 100644
--- a/games/hedgewars/hedgewars.info
+++ b/games/hedgewars/hedgewars.info
@@ -1,8 +1,8 @@
PRGNAM="hedgewars"
-VERSION="0.9.19.3"
+VERSION="0.9.20.5"
HOMEPAGE="http://www.hedgewars.org"
-DOWNLOAD="http://download.gna.org/hedgewars/hedgewars-src-0.9.19.3.tar.bz2"
-MD5SUM="5a308c66e3cef4b839b6cb9903adbf06"
+DOWNLOAD="http://download.gna.org/hedgewars/hedgewars-src-0.9.20.5.tar.bz2"
+MD5SUM="c61eb01466e86da656e1e74ad70a3217"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="fpc lua"