summaryrefslogtreecommitdiffstats
path: root/games/crawl/crawl.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/crawl/crawl.SlackBuild')
-rw-r--r--games/crawl/crawl.SlackBuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/games/crawl/crawl.SlackBuild b/games/crawl/crawl.SlackBuild
index f9d1f39c86..dd6dac8db6 100644
--- a/games/crawl/crawl.SlackBuild
+++ b/games/crawl/crawl.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for Dungeon Crawl Stone Soup
-# Copyright 2023, SlackBuilds.org Project, David Melik, Spokane, WA, USA
+# Copyright 2024, SlackBuilds.org Project, David Melik, Spokane, WA, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=crawl
-VERSION=${VERSION:-0.30.1}
+VERSION=${VERSION:-0.31.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -68,7 +68,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $SRCNAM-$VERSION
-tar xvf $CWD/${SRCNAM}-$VERSION.tar.xz
+tar xvf $CWD/${SRCNAM}-$VERSION-nodeps.tar.xz
cd $SRCNAM-$VERSION
chown -R root:root .
find -L . \
@@ -78,16 +78,16 @@ find -L . \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
cd source
- # do not remove the quotes from SAVEDIR='~/.crawl/'
- # (~ needs to be evaluated at runtime, not buildtime)
- make $TARGET \
+ # Do not remove quotation marks from SAVEDIR='~/.crawl/'.
+ # $SAVEDIR needs evaluating at runtime.
+ make \
prefix=/usr \
COPY_FONTS=1 \
DATADIR=/usr/share/games/crawl \
SAVEDIR='~/.crawl/' \
SDL2=1 \
TILES=1
- make $TARGET install \
+ make install \
prefix=/usr \
COPY_FONTS=1 \
DATADIR=/usr/share/games/crawl \
@@ -96,7 +96,7 @@ cd source
SDL2=1 \
TILES=1
make clean
- make $TARGET \
+ make \
prefix=/usr \
DATADIR=/usr/share/games/crawl \
SAVEDIR='~/.crawl/'