2021-02-04 07:37:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
APP="BBGO.app"
|
2021-02-04 10:22:47 +00:00
|
|
|
APP_DIR=build/$APP
|
2021-02-04 07:37:39 +00:00
|
|
|
|
2021-02-04 10:22:47 +00:00
|
|
|
go build -o $APP_DIR/Contents/MacOS/bbgo-desktop ./cmd/bbgo-desktop
|
2021-02-04 07:37:39 +00:00
|
|
|
|
2021-02-04 10:22:47 +00:00
|
|
|
cat > $APP_DIR/Contents/Info.plist << EOF
|
2021-02-04 07:37:39 +00:00
|
|
|
<?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>CFBundleExecutable</key>
|
2021-02-04 10:22:47 +00:00
|
|
|
<string>bbgo-desktop</string>
|
2021-02-04 07:37:39 +00:00
|
|
|
<key>CFBundleIconFile</key>
|
|
|
|
<string>icon.icns</string>
|
|
|
|
<key>CFBundleIdentifier</key>
|
|
|
|
<string>com.bbgo.lorca</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOF
|
|
|
|
|
2021-02-04 10:22:47 +00:00
|
|
|
cp -v desktop/icons/icon.icns $APP_DIR/Contents/Resources/icon.icns
|
|
|
|
find $APP_DIR
|