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.
|
- #!/bin/bash
-
- set -e
-
- sudo add-apt-repository -y ppa:kxstudio-debian/kxstudio
- sudo add-apt-repository -y ppa:kxstudio-debian/mingw
- sudo add-apt-repository -y ppa:kxstudio-debian/toolchain
-
- if [ "${TARGET}" = "linux-strict" ] || [ "${TARGET}" = "linux-juce-strict" ]; then
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- fi
-
- sudo apt-get update -qq
- sudo apt-get install kxstudio-repos
- sudo apt-get update -qq
|