libretro-super/libretro-build-ps3.sh

50 lines
734 B
Bash
Raw Normal View History

#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
2013-02-09 15:31:28 -05:00
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
2013-02-09 15:31:28 -05:00
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
if [[ -z "$1" ]]; then
WANT_CORES=" \
2017-08-25 06:46:27 -04:00
81 \
2016-08-05 13:14:09 -04:00
fbalpha2012 \
fceumm \
2017-08-25 06:46:27 -04:00
fuse \
genesis_plus_gx \
handy \
mame2000 \
2015-11-03 10:06:30 -05:00
mame2003 \
mednafen_gba \
mednafen_lynx \
mednafen_ngp \
mednafen_pce_fast \
mednafen_pcfx \
mednafen_psx \
mednafen_supergrafx \
mednafen_vb \
nestopia \
nxengine \
quicknes \
2015-08-02 22:32:32 -04:00
prosystem \
prboom \
stella \
2015-07-20 07:45:55 -04:00
tyrquake \
2016-10-22 05:55:10 -04:00
vba_next \
2015-07-21 10:58:33 -04:00
gw \
mgba"
else
WANT_CORES="$@"
fi
2015-07-11 01:08:17 -04:00
platform=ps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}