RetroArch/ios/script/cores/snes9x_next
Jon Maddox c04d96a59b nestopia and snes9x-next build scripts
These get built in a tmp directory under ios. Steps:

* Clone (or pull master) repo
* build core
* move core to modules directory
2013-03-25 09:17:56 -04:00

20 lines
351 B
Bash
Executable File

#!/bin/sh
cd tmp
if [ -d "snes9x-next" ]
then
echo "Updating Snes9x-next"
cd snes9x-next
git pull origin master
else
git clone git@github.com:libretro/snes9x-next.git
cd snes9x-next
fi
echo "Building Snes9x-next"
make -f Makefile.libretro clean
make -f Makefile.libretro platform=ios
mv snes9x_next_libretro.dylib ../../modules
cd ../../