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.

install.sh 832B

3 years ago
123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. set -e
  3. # Special macOS native handling
  4. if [ "${TARGET}" = "macos" ] || [ "${TARGET}" = "macos-universal" ]; then
  5. HOMEBREW_NO_AUTO_UPDATE=1 brew install cmake jq meson
  6. exit 0
  7. fi
  8. # Special handling for caching deb archives
  9. if [ "$(ls ${HOME}/PawPawBuilds/debs | wc -l)" -ne 0 ]; then
  10. sudo cp ${HOME}/PawPawBuilds/debs/*.deb /var/cache/apt/archives/
  11. fi
  12. # common
  13. sudo apt-get install -y build-essential curl cmake jq llvm mingw-w64 qttools5-dev-tools winehq-stable
  14. # specific
  15. if [ "${TARGET}" = "win32" ]; then
  16. sudo apt-get install -y binutils-mingw-w64-i686 g++-mingw-w64-i686
  17. elif [ "${TARGET}" = "win64" ]; then
  18. sudo apt-get install -y binutils-mingw-w64-x86-64 g++-mingw-w64-x86-64
  19. fi
  20. # Special handling for caching deb archives
  21. sudo mv /var/cache/apt/archives/*.deb ${HOME}/PawPawBuilds/debs/