mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
c04d96a59b
These get built in a tmp directory under ios. Steps: * Clone (or pull master) repo * build core * move core to modules directory
22 lines
319 B
Bash
Executable File
22 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd tmp
|
|
|
|
if [ -d "nestopia" ]
|
|
then
|
|
echo "Updating Nestopia"
|
|
cd nestopia
|
|
git pull origin master
|
|
else
|
|
git clone git@github.com:libretro/nestopia.git
|
|
cd nestopia
|
|
fi
|
|
|
|
cd libretro
|
|
|
|
echo "Building Nestopia"
|
|
make clean
|
|
make -f Makefile platform=ios
|
|
mv nestopia_libretro.dylib ../../../modules
|
|
cd ../../../
|