games/picodrive-libretro: Updated for version 2016.12.06_2ece107.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Hunter Sezen 2016-12-06 22:06:01 +00:00 committed by David Spencer
parent d68691ad6d
commit f0f0ac9830
3 changed files with 14 additions and 7 deletions

View File

@ -11,3 +11,6 @@ PicoDrive requires a real BIOS for Sega CD/Mega CD emulation to work.
* bios_CD_E.bin (MegaCD EU BIOS)
* bios_CD_U.bin (SegaCD US BIOS)
* bios_CD_J.bin (MegaCD JP BIOS)
To build the debugging symbols use:
DEBUG=1 ./picodrive-libretro.SlackBuild

View File

@ -24,7 +24,7 @@
PRGNAM=picodrive-libretro
LIBNAM=$(echo $PRGNAM | tr - _)
VERSION=${VERSION:-2016.07.04_7832385}
VERSION=${VERSION:-2016.12.06_2ece107}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -57,6 +57,8 @@ else
LIBDIRSUFFIX=""
fi
DEBUG=${DEBUG:-0}
set -e
rm -rf $PKG
@ -72,13 +74,15 @@ 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 {} \;
make -f Makefile.libretro
make -f Makefile.libretro 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
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
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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION

View File

@ -1,8 +1,8 @@
PRGNAM="picodrive-libretro"
VERSION="2016.07.04_7832385"
VERSION="2016.12.06_2ece107"
HOMEPAGE="http://www.libretro.com/"
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/picodrive-libretro-2016.07.04_7832385.tar.xz"
MD5SUM="e8b7917946099c4556f89f0b90a189d6"
DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/picodrive-libretro-2016.12.06_2ece107.tar.xz"
MD5SUM="566a769fb396acdc15a74f238ced2281"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="RetroArch"