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 20:31:28 +00:00
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
2013-02-09 20:31:28 +00: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 10:46:27 +00:00
81 \
2016-08-05 17:14:09 +00:00
fbalpha2012 \
fceumm \
2017-08-25 10:46:27 +00:00
fuse \
genesis_plus_gx \
handy \
mame2000 \
2015-11-03 15:06:30 +00:00
mame2003 \
mednafen_gba \
mednafen_lynx \
mednafen_ngp \
mednafen_pce_fast \
mednafen_pcfx \
mednafen_psx \
mednafen_supergrafx \
mednafen_vb \
nestopia \
nxengine \
quicknes \
2015-08-03 02:32:32 +00:00
prosystem \
prboom \
stella \
2015-07-20 11:45:55 +00:00
tyrquake \
2016-10-22 09:55:10 +00:00
vba_next \
2015-07-21 14:58:33 +00:00
gw \
mgba"
else
WANT_CORES="$@"
fi
2015-07-11 05:08:17 +00:00
platform=ps3 ${BASE_DIR}/libretro-build.sh ${WANT_CORES}