53 lines
1.4 KiB
Bash
Executable File
53 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Build and bundle Clawdis into a minimal .app we can open.
|
|
# Outputs to dist/Clawdis.app
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
APP_ROOT="$ROOT_DIR/dist/Clawdis.app"
|
|
BUILD_PATH="$ROOT_DIR/apps/macos/.build-local"
|
|
PRODUCT="Clawdis"
|
|
|
|
cd "$ROOT_DIR/apps/macos"
|
|
|
|
echo "🔨 Building $PRODUCT (debug)"
|
|
swift build -c debug --product "$PRODUCT" --build-path "$BUILD_PATH"
|
|
|
|
BIN="$BUILD_PATH/debug/$PRODUCT"
|
|
echo "🧹 Cleaning old app bundle"
|
|
rm -rf "$APP_ROOT"
|
|
mkdir -p "$APP_ROOT/Contents/MacOS"
|
|
mkdir -p "$APP_ROOT/Contents/Resources"
|
|
|
|
echo "📄 Writing Info.plist"
|
|
cat > "$APP_ROOT/Contents/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>CFBundleIdentifier</key>
|
|
<string>com.steipete.clawdis</string>
|
|
<key>CFBundleName</key>
|
|
<string>Clawdis</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>Clawdis</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>15.0</string>
|
|
<key>LSUIElement</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
PLIST
|
|
|
|
echo "🚚 Copying binary"
|
|
cp "$BIN" "$APP_ROOT/Contents/MacOS/Clawdis"
|
|
chmod +x "$APP_ROOT/Contents/MacOS/Clawdis"
|
|
|
|
echo "✅ Bundle ready at $APP_ROOT"
|
|
|
|
echo "🚀 Launching app"
|
|
open "$APP_ROOT"
|