summaryrefslogtreecommitdiffstats
path: root/games/onscripter/onscripter.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/onscripter/onscripter.SlackBuild')
-rw-r--r--games/onscripter/onscripter.SlackBuild27
1 files changed, 20 insertions, 7 deletions
diff --git a/games/onscripter/onscripter.SlackBuild b/games/onscripter/onscripter.SlackBuild
index 599311c240..157feefd97 100644
--- a/games/onscripter/onscripter.SlackBuild
+++ b/games/onscripter/onscripter.SlackBuild
@@ -1,8 +1,9 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for onscripter
+# @(#)onscripter.SlackBuild 1.4 20/05/03 06:46:49
-# Copyright 2019 GOSIKI Agiri
+# Copyright 2020 GOSIKI Agiri
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -22,10 +23,13 @@
# 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=onscripter
-VERSION=${VERSION:-20190527}
+VERSION=${VERSION:-20200419}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
@@ -35,7 +39,14 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+# 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
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -92,7 +103,8 @@ patch -p0 < $CWD/onscripter-makefile_config.diff
# make Japanese binary and install it to /usr/games
if [ $ONSTARGET == "japanese" -o $ONSTARGET == "both" ]; then
- make -f Makefile.Linux clean onscripter
+ make -f Makefile.Linux clean
+ make -f Makefile.Linux onscripter
install -Dm755 onscripter $PKG/usr/games/onscripter
fi
@@ -100,7 +112,8 @@ fi
# install it as onscripter_english though
if [ $ONSTARGET == "english" -o $ONSTARGET == "both" ]; then
sed -i Makefile.Linux -e 's/#DEFS += -DENABLE_1BYTE_CHAR/DEFS += -DENABLE_1BYTE_CHAR/'
- make -f Makefile.Linux clean onscripter
+ make -f Makefile.Linux clean
+ make -f Makefile.Linux onscripter
install -Dm755 onscripter $PKG/usr/games/onscripter_english
fi
@@ -124,4 +137,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
sed -i $PKG/install/slack-desc -e "s/%versiontag%/$versiontag/"
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE