games/nxengine-libretro: Updated for version 2017.12.16_7f26320.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Hunter Sezen 2017-12-20 21:50:43 +00:00 committed by Willy Sudiarto Raharjo
parent aeb599e872
commit 70eb778a6b
3 changed files with 11 additions and 11 deletions

View file

@ -5,10 +5,10 @@ It will require Cave Story 1.0.0.6 and the Aeon Genesis translation which can
be download from the RetroArch downloadable content.
Alternatively Cave Story is available from Studio Pixel's website:
http://studiopixel.sakura.ne.jp/archives/index.html
https://studiopixel.sakura.ne.jp/archives/index.html
The Aeon Genesis translation is available from:
http://agtp.romhack.net/project.php?id=cavestory
https://agtp.romhack.net/project.php?id=cavestory
To build the debugging symbols use:
DEBUG=1 ./nxengine-libretro.SlackBuild

View file

@ -2,7 +2,7 @@
# Slackware build script for nxengine-libretro
# Copyright 2016 Hunter Sezen
# Copyright 2016-2017 Hunter Sezen
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,7 @@
PRGNAM=nxengine-libretro
LIBNAM=$(echo $PRGNAM | tr - _)
VERSION=${VERSION:-2017.01.24_20f6aac}
VERSION=${VERSION:-2017.12.16_7f26320}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -57,9 +57,7 @@ else
LIBDIRSUFFIX=""
fi
DEBUG=${DEBUG:-0}
set -e
set -eu
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
@ -74,12 +72,14 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
[ "${DEBUG:=0}" != 0 ] && DEBUG=1
make DEBUG=$DEBUG
install -Dm0644 $LIBNAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$LIBNAM.so
install -Dm0644 $LIBNAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$LIBNAM.info
if [ "$DEBUG" = "0" ]; then
if [ $DEBUG = 0 ]; then
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
fi

View file

@ -1,8 +1,8 @@
PRGNAM="nxengine-libretro"
VERSION="2017.01.24_20f6aac"
VERSION="2017.12.16_7f26320"
HOMEPAGE="https://www.libretro.com/"
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/nxengine-libretro-2017.01.24_20f6aac.tar.xz"
MD5SUM="d7dcbbc9b20fada83dfc27f027b41960"
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/nxengine-libretro-2017.12.16_7f26320.tar.xz"
MD5SUM="f12941a4047a7548bc759ef0d3e85251"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="RetroArch"