diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2017-12-20 21:44:16 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-12-21 08:19:29 +0700 |
commit | ed660d71681c05fbfc44c009ed90bf2b0cba2716 (patch) | |
tree | a8a4cf681597df0a456f9c441dd06477a7599086 /games/mupen64plus-libretro | |
parent | e31ec32fd8d721f56195349c5dcf8efd2f754176 (diff) | |
download | slackbuilds-ed660d71681c05fbfc44c009ed90bf2b0cba2716.tar.gz |
games/mupen64plus-libretro: Updated for version 2017.11.19_6f80cbc.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/mupen64plus-libretro')
-rw-r--r-- | games/mupen64plus-libretro/mupen64plus-libretro.SlackBuild | 22 | ||||
-rw-r--r-- | games/mupen64plus-libretro/mupen64plus-libretro.info | 6 |
2 files changed, 14 insertions, 14 deletions
diff --git a/games/mupen64plus-libretro/mupen64plus-libretro.SlackBuild b/games/mupen64plus-libretro/mupen64plus-libretro.SlackBuild index 86554b33f5..f98f6e6073 100644 --- a/games/mupen64plus-libretro/mupen64plus-libretro.SlackBuild +++ b/games/mupen64plus-libretro/mupen64plus-libretro.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=mupen64plus-libretro LIBNAM=$(printf %s "$PRGNAM" | tr - _) -VERSION=${VERSION:-2017.07.22_9b01671} +VERSION=${VERSION:-2017.11.19_6f80cbc} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,11 +57,7 @@ else LIBDIRSUFFIX="" fi -DEBUG=${DEBUG:-0} -GLES=${GLES:-0} -GLES3=${GLES3:-0} - -set -e +set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -76,15 +72,19 @@ 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 DEBUG="$DEBUG" \ - GIT_VERSION="${VERSION#*_}" \ - FORCE_GLES="$GLES" \ - FORCE_GLES3="$GLES3" +[ "${DEBUG:=0}" != 0 ] && DEBUG=1 +[ "${GLES:=0}" != 0 ] && GLES=1 +[ "${GLES3:=0}" != 0 ] && GLES3=1 + +make DEBUG=$DEBUG \ + FORCE_GLES=$GLES \ + FORCE_GLES3=$GLES3 \ + GIT_VERSION="${VERSION#*_}" 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 diff --git a/games/mupen64plus-libretro/mupen64plus-libretro.info b/games/mupen64plus-libretro/mupen64plus-libretro.info index df3452d8b2..5d8c065146 100644 --- a/games/mupen64plus-libretro/mupen64plus-libretro.info +++ b/games/mupen64plus-libretro/mupen64plus-libretro.info @@ -1,8 +1,8 @@ PRGNAM="mupen64plus-libretro" -VERSION="2017.07.22_9b01671" +VERSION="2017.11.19_6f80cbc" HOMEPAGE="https://github.com/libretro/mupen64plus-libretro" -DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/mupen64plus-libretro-2017.07.22_9b01671.tar.xz" -MD5SUM="8c57271a2262a04e16bf2d9ed0bd5b6a" +DOWNLOAD="http://ks392457.kimsufi.com/orbea/stuff/slackbuilds/src/libretro/mupen64plus-libretro-2017.11.19_6f80cbc.tar.xz" +MD5SUM="d0d4fa05a6a1d349686819b43d137c03" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="RetroArch" |