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.

26 lines
694B

  1. #!/bin/bash
  2. cd $(dirname $0)
  3. rm -rf bin32 bin64 *.dll
  4. set -e
  5. mkdir bin32 bin64
  6. docker build -t carla-bridge-win .
  7. docker run -v $PWD:/mnt --rm --entrypoint \
  8. cp carla-bridge-win:latest \
  9. /Carla/bin32/CarlaVstShellBridged.dll.so \
  10. /Carla/bin32/CarlaVstFxShellBridged.dll.so \
  11. /mnt/bin32
  12. docker run -v $PWD:/mnt --rm --entrypoint \
  13. cp carla-bridge-win:latest \
  14. /Carla/bin64/CarlaVstShellBridged.dll.so \
  15. /Carla/bin64/CarlaVstFxShellBridged.dll.so \
  16. /mnt/bin64
  17. docker run -v $PWD:/mnt --rm --entrypoint \
  18. cp carla-bridge-win:latest \
  19. /Carla/bin/jackbridge-wine32.dll \
  20. /Carla/bin/jackbridge-wine64.dll \
  21. /mnt