Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

generate-vst-bundles.sh 505B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. set -e
  3. if [ -d bin ]; then
  4. cd bin
  5. else
  6. echo "Please run this script from the root folder"
  7. exit
  8. fi
  9. rm -rf *.vst/
  10. PLUGINS=$(ls | grep "Carla" | grep "dylib")
  11. for i in ${PLUGINS}; do
  12. FILE=$(echo $i | awk 'sub(".dylib","")')
  13. cp -r ../data/macos/plugin.vst ${FILE}.vst
  14. cp $i ${FILE}.vst/Contents/MacOS/${FILE}
  15. rm -f ${FILE}.vst/Contents/MacOS/deleteme
  16. sed -i -e "s/X-PROJECTNAME-X/${FILE}/" ${FILE}.vst/Contents/Info.plist
  17. rm -f ${FILE}.vst/Contents/Info.plist-e
  18. done
  19. cd ..