games/onscripter: Updated for version 20191116.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
6ce8821f7a
commit
801bf79866
|
@ -19,3 +19,12 @@ experience issues when playing games converted for onscripter-en.
|
|||
This script may also install various tools for extracting and
|
||||
converting NScripter code and resources. If you wish for them to be
|
||||
built, please pass the ONSTOOLS=yes variable to the build script.
|
||||
|
||||
* REGARDING MP3 MUSIC MISSING *
|
||||
This is an issue with Slackware not compiling SDL_mixer with support
|
||||
for MP3 playback. You can fix that by downloading Slackbuild source
|
||||
for l/sdl from one of the mirrors and modifying its SDL_mixer
|
||||
configure section to include either --enable-music-mp3-mad-gpl or
|
||||
--enable-music-mp3 - the former will use libmad already included in
|
||||
Slackware, the other will use smpeg dependency from SBo we need
|
||||
anyway for movie playback support.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="onscripter"
|
||||
VERSION="20190527"
|
||||
VERSION="20191116"
|
||||
HOMEPAGE="https://onscripter.osdn.jp/onscripter.html"
|
||||
DOWNLOAD="https://onscripter.osdn.jp/onscripter-20190527.tar.gz"
|
||||
MD5SUM="5ce410908b712b477dce109f777cd6e1"
|
||||
DOWNLOAD="https://onscripter.osdn.jp/onscripter-20191116.tar.gz"
|
||||
MD5SUM="9caa3094b4b34a129ecd0f85db3eef62"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="smpeg lua"
|
||||
|
|
|
@ -11,7 +11,7 @@ onscripter:
|
|||
onscripter: ONScripter is a program that interprets a script written for
|
||||
onscripter: NScripter visual novel engine in its own way.
|
||||
onscripter:
|
||||
onscripter: This version has been build for %versiontag%
|
||||
onscripter: This version has been built for %versiontag%
|
||||
onscripter:
|
||||
onscripter: Homepage: https://onscripter.osdn.jp/onscripter.html
|
||||
onscripter:
|
||||
|
|
Loading…
Reference in New Issue