(FBA Cores CPS2) Use svn-old for GX for now

This commit is contained in:
twinaphex 2014-02-25 02:01:13 +01:00
parent fed7bbf8ac
commit 57c360a750

View File

@ -1,10 +1,23 @@
#!/bin/bash #!/bin/bash
build_libretro_fba_cps2_gx()
{
cd $BASE_DIR
if [ -d "libretro-fba" ]; then
echo "=== Building Final Burn Alpha Cores (CPS2) ==="
cd libretro-fba/
cd svn-old/trunk
cd fbacores/cps2
make -f makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS clean || die "Failed to clean Final Burn Alpha Cores CPS2"
make -f makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS || die "Failed to build Final Burn Alpha Cores CPS2"
cp fba_cores_cps2_libretro$FORMAT.${FORMAT_EXT} $RARCH_DIST_DIR/fba_cores_cps2_libretro$FORMAT.${FORMAT_EXT}
fi
}
build_libretro_fba() build_libretro_fba()
{ {
build_libretro_fba_full build_libretro_fba_full
build_libretro_fba_cps1 build_libretro_fba_cps1
build_libretro_fba_cps2 build_libretro_fba_cps2_gx
build_libretro_fba_neogeo build_libretro_fba_neogeo
} }