Browse Source

Add script to generate mac vst bundles

tags/v2.1-alpha1-winvst
parent
commit
e364a0d113
6 changed files with 53 additions and 0 deletions
  1. +2
    -0
      .gitignore
  2. +25
    -0
      data/macos/generate-vst-bundles.sh
  3. +24
    -0
      data/macos/plugin.vst/Contents/Info.plist
  4. +1
    -0
      data/macos/plugin.vst/Contents/MacOS/deleteme
  5. +1
    -0
      data/macos/plugin.vst/Contents/PkgInfo
  6. +0
    -0
      data/macos/plugin.vst/Contents/Resources/empty.lproj

+ 2
- 0
.gitignore View File

@@ -25,6 +25,8 @@
*.exe *.exe
*.msi *.msi
*.so *.so
*.vst
*.vst3


# Binary dir # Binary dir
bin/jack/ bin/jack/


+ 25
- 0
data/macos/generate-vst-bundles.sh View File

@@ -0,0 +1,25 @@
#!/bin/bash

set -e

if [ -d bin ]; then
cd bin
else
echo "Please run this script from the root folder"
exit
fi

rm -rf *.vst/

PLUGINS=$(ls | grep "Carla" | grep "dylib")

for i in ${PLUGINS}; do
FILE=$(echo $i | awk 'sub(".dylib","")')
cp -r ../data/macos/plugin.vst ${FILE}.vst
cp $i ${FILE}.vst/Contents/MacOS/${FILE}
rm -f ${FILE}.vst/Contents/MacOS/deleteme
sed -i -e "s/X-PROJECTNAME-X/${FILE}/" ${FILE}.vst/Contents/Info.plist
rm -f ${FILE}.vst/Contents/Info.plist-e
done

cd ..

+ 24
- 0
data/macos/plugin.vst/Contents/Info.plist View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>X-PROJECTNAME-X</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>net.sf.distrho.X-PROJECTNAME-X</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CSResourcesFileMapped</key>
<true/>
</dict>
</plist>

+ 1
- 0
data/macos/plugin.vst/Contents/MacOS/deleteme View File

@@ -0,0 +1 @@

+ 1
- 0
data/macos/plugin.vst/Contents/PkgInfo View File

@@ -0,0 +1 @@
BNDL????

+ 0
- 0
data/macos/plugin.vst/Contents/Resources/empty.lproj View File


Loading…
Cancel
Save