mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
18 lines
509 B
Bash
Executable File
18 lines
509 B
Bash
Executable File
#!/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
|