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.

21 lines
723B

  1. #!/bin/bash
  2. set -e
  3. sudo add-apt-repository -y ppa:kxstudio-debian/kxstudio
  4. sudo add-apt-repository -y ppa:kxstudio-debian/mingw
  5. sudo add-apt-repository -y ppa:kxstudio-debian/toolchain
  6. if [ "${TARGET}" = "linux" ]; then
  7. wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
  8. sudo apt-add-repository -y 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
  9. sudo add-apt-repository -y ppa:kxstudio-debian/ubuntus
  10. sudo dpkg --add-architecture i386
  11. elif [ "${TARGET}" = "linux-strict" ] || [ "${TARGET}" = "linux-juce-strict" ]; then
  12. sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
  13. fi
  14. sudo apt-get update -qq
  15. sudo apt-get install kxstudio-repos
  16. sudo apt-get update -qq