mirror of
https://github.com/cranci1/Sora.git
synced 2026-08-07 20:00:03 +00:00
42 lines
1.1 KiB
Bash
Executable file
42 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
WORKING_LOCATION="$(pwd)"
|
|
APPLICATION_NAME=Sora-JS
|
|
|
|
if [ ! -d "build" ]; then
|
|
mkdir build
|
|
fi
|
|
|
|
cd build
|
|
Sora-JS
|
|
xcodebuild -project "$WORKING_LOCATION/$APPLICATION_NAME.xcodeproj" \
|
|
-scheme "$APPLICATION_NAME" \
|
|
-configuration Release \
|
|
-derivedDataPath "$WORKING_LOCATION/build/DerivedDataApp" \
|
|
-destination 'generic/platform=iOS' \
|
|
clean build \
|
|
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO"
|
|
|
|
DD_APP_PATH="$WORKING_LOCATION/build/DerivedDataApp/Build/Products/Release-iphoneos/$APPLICATION_NAME.app"
|
|
TARGET_APP="$WORKING_LOCATION/build/$APPLICATION_NAME.app"
|
|
cp -r "$DD_APP_PATH" "$TARGET_APP"
|
|
|
|
codesign --remove "$TARGET_APP"
|
|
if [ -e "$TARGET_APP/_CodeSignature" ]; then
|
|
rm -rf "$TARGET_APP/_CodeSignature"
|
|
fi
|
|
if [ -e "$TARGET_APP/embedded.mobileprovision" ]; then
|
|
rm -rf "$TARGET_APP/embedded.mobileprovision"
|
|
fi
|
|
|
|
|
|
mkdir Payload
|
|
cp -r Sora-JS.app Payload/Sora-JS.app
|
|
strip Payload/Sora-JS.app/Sora-JS
|
|
zip -vr Sora-JS.ipa Payload
|
|
rm -rf Sora-JS.app
|
|
rm -rf Payload
|