mirror of
https://github.com/cranci1/Sora.git
synced 2026-01-11 20:10:24 +00:00
34 lines
902 B
Bash
Executable file
34 lines
902 B
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 'platform=macOS,variant=Mac Catalyst' \
|
|
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-maccatalyst/$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
|
|
|
|
echo "Mac Catalyst build completed: $TARGET_APP"
|