aboutsummaryrefslogtreecommitdiff
path: root/games/onscripter/onscripter.SlackBuild
diff options
context:
space:
mode:
authorGOSIKI Agiri <agiri@cocaine.ninja>2019-12-15 05:29:05 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-12-15 05:29:05 +0700
commit801bf798665d09918e6950df3967551ca9b33d96 (patch)
tree24b233f87fda3bf7214dcbbda8e0e1da50fa20ce /games/onscripter/onscripter.SlackBuild
parent6ce8821f7a0235e2efe8a133817e853530d5ae5b (diff)
downloadslackbuilds-801bf798665d09918e6950df3967551ca9b33d96.tar.xz
games/onscripter: Updated for version 20191116.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/onscripter/onscripter.SlackBuild')
-rw-r--r--games/onscripter/onscripter.SlackBuild9
1 files changed, 6 insertions, 3 deletions
diff --git a/games/onscripter/onscripter.SlackBuild b/games/onscripter/onscripter.SlackBuild
index 599311c240a6..6ac7a818e874 100644
--- a/games/onscripter/onscripter.SlackBuild
+++ b/games/onscripter/onscripter.SlackBuild
@@ -1,6 +1,7 @@
#!/bin/sh
# Slackware build script for onscripter
+# @(#)onscripter.SlackBuild 1.3 19/12/13 19:36:30
# Copyright 2019 GOSIKI Agiri
# All rights reserved.
@@ -23,7 +24,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=onscripter
-VERSION=${VERSION:-20190527}
+VERSION=${VERSION:-20191116}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -92,7 +93,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 +102,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