59 lines
1.6 KiB
Bash
Executable File
59 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ROOT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
APP_NAME="MastermindPOC"
|
|
BUILD_DIR="$ROOT_DIR/build"
|
|
APP_DIR="$BUILD_DIR/$APP_NAME.app"
|
|
CONTENTS_DIR="$APP_DIR/Contents"
|
|
MACOS_DIR="$CONTENTS_DIR/MacOS"
|
|
|
|
export CLANG_MODULE_CACHE_PATH="$ROOT_DIR/.build/module-cache"
|
|
|
|
cd "$ROOT_DIR"
|
|
swift build --product "$APP_NAME"
|
|
|
|
rm -rf "$APP_DIR"
|
|
mkdir -p "$MACOS_DIR"
|
|
|
|
cp "$ROOT_DIR/.build/debug/$APP_NAME" "$MACOS_DIR/$APP_NAME"
|
|
chmod +x "$MACOS_DIR/$APP_NAME"
|
|
|
|
cat > "$CONTENTS_DIR/Info.plist" <<'PLIST'
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Mastermind POC</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>MastermindPOC</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>app.mastermind.poc</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>Mastermind POC</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0.1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>14.0</string>
|
|
<key>LSUIElement</key>
|
|
<true/>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>Mastermind POC uses microphone audio only when you start microphone capture.</string>
|
|
</dict>
|
|
</plist>
|
|
PLIST
|
|
|
|
printf 'APPL????' > "$CONTENTS_DIR/PkgInfo"
|
|
|
|
echo "Built $APP_DIR"
|