drop all the build scripts, these belong in libretro-super

This commit is contained in:
Jon Maddox 2013-03-26 10:36:21 -04:00
parent b20c19b4d0
commit 406ba52e4d
5 changed files with 0 additions and 81 deletions

View File

@ -1,21 +0,0 @@
#!/bin/sh
set -e
. script/build.config
xcodebuild clean
rm -rf build
xcodebuild -verbose -sdk iphoneos -configuration Release
if ! $nocodesign ; then
codesign -fs "$CODE_SIGN_IDENTITY" "$BUILD_PATH/RetroArch.app/modules/snes9x_next_libretro.dylib"
codesign -fs "$CODE_SIGN_IDENTITY" "$BUILD_PATH/RetroArch.app/modules/nestopia_libretro.dylib"
xcrun -sdk iphoneos PackageApplication "$BUILD_PATH/RetroArch.app" -o "$BUILD_PATH/RetroArch.ipa" --sign "$CODE_SIGN_IDENTITY" --embed "$PROVISIONING"
fi
echo "######### RetroArch build Complete!! #########"
echo "You can find the resulting app in the $BUILD_PATH directory.\n"

View File

@ -1,13 +0,0 @@
#!/bin/sh
set -e
export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/
test ! -d "tmp" && {
mkdir tmp
}
script/cores/nestopia
script/cores/snes9x_next

View File

@ -1,7 +0,0 @@
#!/bin/sh
set -e
test -d "tmp" && {
rm -Rf tmp
}

View File

@ -1,21 +0,0 @@
#!/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 ../../../

View File

@ -1,19 +0,0 @@
#!/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 ../../