-
Notifications
You must be signed in to change notification settings - Fork 14
/
bundle_macos.sh
executable file
·59 lines (41 loc) · 1.43 KB
/
bundle_macos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
# Modified lightly from
# https://github.com/RustAudio/vst-rs/blob/master/osx_vst_bundler.sh
SYNTH_NAME=ampli-Fe
BUILD_OUTPUT=target/release/libampli_fe.dylib
# Make the bundle folder
mkdir -p "$SYNTH_NAME.vst/Contents/MacOS"
# Create the PkgInfo
echo "BNDL????" > "$SYNTH_NAME.vst/Contents/PkgInfo"
#build the Info.Plist
echo "<?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>English</string>
<key>CFBundleExecutable</key>
<string>$SYNTH_NAME</string>
<key>CFBundleGetInfoString</key>
<string>vst</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.antonok.$SYNTH_NAME</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$SYNTH_NAME</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>$((RANDOM % 9999))</string>
<key>CSResourcesFileMapped</key>
<string></string>
</dict>
</plist>" > "$SYNTH_NAME.vst/Contents/Info.plist"
# move the provided library to the correct location
cp "$BUILD_OUTPUT" "$SYNTH_NAME.vst/Contents/MacOS/$SYNTH_NAME"
echo "Created bundle $SYNTH_NAME.vst"