diff options
Diffstat (limited to 'games/onscripter/onscripter.SlackBuild')
-rw-r--r-- | games/onscripter/onscripter.SlackBuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/games/onscripter/onscripter.SlackBuild b/games/onscripter/onscripter.SlackBuild index 599311c240a6b..6ac7a818e8741 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 |