diff options
Diffstat (limited to 'games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild')
-rw-r--r-- | games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild b/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild index adf0d28391813..8728523976c45 100644 --- a/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild +++ b/games/beetle-psx-libretro/beetle-psx-libretro.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=beetle-psx-libretro LIBNAM=mednafen_psx_libretro -VERSION=${VERSION:-2017.02.04_e3aae3d} +VERSION=${VERSION:-2017.08.11_a6bbea0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -85,16 +85,16 @@ 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#*_} \ - VULKAN_DEBUG=$DEBUG \ - HAVE_OPENGL=$OPENGL \ - HAVE_VULKAN=$VULKAN +make DEBUG="$DEBUG" \ + GIT_VERSION="${VERSION#*_}" \ + VULKAN_DEBUG="$DEBUG" \ + HAVE_OPENGL="$OPENGL" \ + HAVE_VULKAN="$VULKAN" 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 |