summaryrefslogtreecommitdiffstats
path: root/games/dwarffortress/dwarffortress.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/dwarffortress/dwarffortress.SlackBuild')
-rw-r--r--games/dwarffortress/dwarffortress.SlackBuild55
1 files changed, 14 insertions, 41 deletions
diff --git a/games/dwarffortress/dwarffortress.SlackBuild b/games/dwarffortress/dwarffortress.SlackBuild
index 1a30512966..69cc222af2 100644
--- a/games/dwarffortress/dwarffortress.SlackBuild
+++ b/games/dwarffortress/dwarffortress.SlackBuild
@@ -21,23 +21,15 @@
# 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.
-
+cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=dwarffortress
-VERSION=${VERSION:-0.47.05}
-SRCNAM=df_47_05_linux
+VERSION=${VERSION:-0.50.13}
+SRCNAM=df_50_13_linux
SRCDIR=df_linux
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
@@ -46,15 +38,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-if [ "$ARCH" = "i586" ]; then
- BITFLAG="32"
-elif [ "$ARCH" = "x86_64" ]; then
- BITFLAG=""
-else
- BITFLAG=""
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
fi
-CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -63,28 +51,13 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $SRCDIR
-tar xvf $CWD/$SRCNAM$BITFLAG.tar.bz2
-cd $SRCDIR && chown -R root:root .
-
-## Unnecessary in this case. Leave it in case the Toady One ever uses symlinks.
-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 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-## Remove two library files that prevent operation, use local libraries instead.
-rm libs/libgcc_s.so.1
-rm libs/libstdc++.so.6
-
-## These directories will be writeable by the user. Normally mode 700.
-find {data,raw,sdl} -type d -exec chmod 755 {} \;
+cd $PKG
+mkdir opt opt/$PRGNAM
+cd opt/$PRGNAM
-mkdir $PKG/opt
-cd ..
-mv $SRCDIR $PKG/opt/$PRGNAM
+tar pxvf $CWD/$SRCNAM.tar.bz2
+chown -R root:root .
+chmod -R 755 .
# Strip binaries and libraries -
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
@@ -96,9 +69,9 @@ cat $CWD/dwarffortress.desktop > $PKG/usr/share/applications/dwarffortress.deskt
cat $CWD/dwarffortress.png > $PKG/usr/share/pixmaps/dwarffortress.png
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cd $PKG/opt/$PRGNAM
-cp -a README.linux command\ line.txt file\ changes.txt readme.txt \
+cp -a command\ line.txt file\ changes.txt readme.txt \
release\ notes.txt $PKG/usr/doc/$PRGNAM-$VERSION
+chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild