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.

53 lines
1.2KB

  1. #!/bin/bash
  2. VERSION="2.3.0-alpha1"
  3. # ---------------------------------------------------------------------------------------------------------------------
  4. # stop on error
  5. set -e
  6. # ---------------------------------------------------------------------------------------------------------------------
  7. # cd to correct path
  8. if [ ! -f Makefile ]; then
  9. cd $(dirname $0)/../..
  10. fi
  11. # ---------------------------------------------------------------------------------------------------------------------
  12. # cleanup
  13. if [ ! -f Makefile ] || [ ! -f source/frontend/carla ]; then
  14. echo "wrong dir"
  15. exit 1
  16. fi
  17. rm -rf data/windows/*.exe
  18. rm -rf data/windows/*.lv2
  19. rm -rf data/windows/*.vst
  20. rm -rf data/windows/*.zip
  21. # ---------------------------------------------------------------------------------------------------------------------
  22. # start
  23. make distclean
  24. pushd data/windows
  25. ./build-win.sh 32nosse
  26. ./pack-win.sh 32nosse
  27. mv Carla_${VERSION}-win32.zip Carla_${VERSION}-win32-nosse.zip
  28. popd
  29. make distclean
  30. pushd data/windows
  31. ./build-win.sh 32
  32. ./pack-win.sh 32
  33. popd
  34. make distclean
  35. pushd data/windows
  36. ./build-win.sh 64
  37. ./pack-win.sh 64
  38. popd
  39. # ---------------------------------------------------------------------------------------------------------------------