Carla binary releases 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.

18 lines
527B

  1. #!/bin/bash
  2. set -e
  3. if [ "${TARGET}" = "macos" ] || [ "${TARGET}" = "macos-universal" ]; then
  4. exit 0
  5. fi
  6. if [ "${TARGET}" = "win32" ] || [ "${TARGET}" = "win64" ]; 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/ focal main'
  9. sudo dpkg --add-architecture i386
  10. fi
  11. sudo apt-get update -qq
  12. sudo apt-get install -y -o APT::Immediate-Configure=false libc6 libc6:i386 libgcc-s1:i386
  13. sudo apt-get install -y -f