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.

31 lines
429B

  1. #!/bin/bash
  2. set -e
  3. if [ ! -f meson.build ]; then
  4. echo "run from top dir"
  5. exit 1
  6. fi
  7. # legacy/compat repo
  8. pushd libs/juce-legacy
  9. if [ -d source ]; then
  10. mv source source.bak
  11. fi
  12. git clone git@github.com:DISTRHO/juce.git -b distrho-ports-compat source
  13. popd
  14. # main/juce6 repo
  15. pushd libs/juce-current
  16. if [ -d source ]; then
  17. mv source source.bak
  18. fi
  19. git clone git@github.com:DISTRHO/juce.git -b main source
  20. popd