mirror of
https://github.com/cranci1/Sora.git
synced 2026-01-11 12:00:30 +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=Sulfur
|
|
|
|
if [ ! -d "build" ]; then
|
|
mkdir build
|
|
fi
|
|
|
|
cd build
|
|
|
|
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 Sulfur.app Payload/Sulfur.app
|
|
strip Payload/Sulfur.app/Sulfur
|
|
zip -vr Sulfur.ipa Payload
|
|
rm -rf Sulfur.app
|
|
rm -rf Payload
|