mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
drop all the build scripts, these belong in libretro-super
This commit is contained in:
parent
b20c19b4d0
commit
406ba52e4d
@ -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"
|
|
@ -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
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
test -d "tmp" && {
|
|
||||||
rm -Rf tmp
|
|
||||||
}
|
|
@ -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 ../../../
|
|
@ -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 ../../
|
|
Loading…
x
Reference in New Issue
Block a user