mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-13 02:23:51 +00:00
25 lines
575 B
Bash
25 lines
575 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
APP="BBGO.app"
|
||
|
|
||
|
mkdir -p $APP/Contents/{MacOS,Resources}
|
||
|
go build -o $APP/Contents/MacOS/bbgo
|
||
|
|
||
|
cat > $APP/Contents/Info.plist << EOF
|
||
|
<?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>
|
||
|
<string>bbgo</string>
|
||
|
<key>CFBundleIconFile</key>
|
||
|
<string>icon.icns</string>
|
||
|
<key>CFBundleIdentifier</key>
|
||
|
<string>com.bbgo.lorca</string>
|
||
|
</dict>
|
||
|
</plist>
|
||
|
EOF
|
||
|
|
||
|
cp icons/icon.icns $APP/Contents/Resources/icon.icns
|
||
|
find $APP
|