games/bsnes-libretro: Updated for version 2017.12.06_a4800ad.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
a8bae987ac
commit
7bd0df1484
|
@ -24,7 +24,7 @@
|
|||
|
||||
PRGNAM=bsnes-libretro
|
||||
LIBNAM=$(echo $PRGNAM | cut -f1 -d"-")
|
||||
VERSION=${VERSION:-2017.07.24_263e94f9}
|
||||
VERSION=${VERSION:-2017.12.06_a4800ad}
|
||||
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,6 +72,8 @@ 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
|
||||
|
||||
case "$ARCH" in
|
||||
arm) CORE="${CORE:-performance}" ;;
|
||||
*) CORE="${CORE:-accuracy}" ;;
|
||||
|
@ -83,13 +83,12 @@ esac
|
|||
|
||||
for PROFILE in $CORE; do
|
||||
CORENAM="${LIBNAM}_${PROFILE}_libretro"
|
||||
make profile="$PROFILE" DEBUG="$DEBUG" GIT_VERSION="${VERSION#*_}"
|
||||
make profile="$PROFILE" DEBUG=$DEBUG GIT_VERSION="${VERSION#*_}"
|
||||
install -Dm0644 out/$CORENAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$CORENAM.so
|
||||
install -Dm0644 $CORENAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$CORENAM.info
|
||||
make clean
|
||||
done
|
||||
|
||||
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
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="bsnes-libretro"
|
||||
VERSION="2017.07.24_263e94f9"
|
||||
VERSION="2017.12.06_a4800ad"
|
||||
HOMEPAGE="https://www.libretro.com/"
|
||||
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/bsnes-libretro-2017.07.24_263e94f9.tar.xz"
|
||||
MD5SUM="87909bac99d32a625457121313774f52"
|
||||
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/bsnes-libretro-2017.12.06_a4800ad.tar.xz"
|
||||
MD5SUM="2ef1b5a04041b10ba3e37f2b3c6c776e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="RetroArch"
|
||||
|
|
|
@ -11,7 +11,7 @@ bsnes-libretro:
|
|||
bsnes-libretro: bsnes is a Super Nintendo video game system emulator that can be
|
||||
bsnes-libretro: used as a libretro core.
|
||||
bsnes-libretro:
|
||||
bsnes-libretro: Homepage: http://www.libretro.com/
|
||||
bsnes-libretro: Homepage: https://www.libretro.com/
|
||||
bsnes-libretro:
|
||||
bsnes-libretro:
|
||||
bsnes-libretro:
|
||||
|
|
Loading…
Reference in New Issue