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
585B

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