DISTRHO Plugin Framework
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.

24 lines
724B

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