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.

install.sh 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #!/bin/bash
  2. set -e
  3. if [ "${TARGET}" = "linux" ]; then
  4. sudo apt-get install -y \
  5. g++-multilib \
  6. pkg-config \
  7. pyqt5-dev-tools \
  8. python3-pyqt5.qtsvg \
  9. python3-rdflib \
  10. libgtk2.0-dev \
  11. libgtk-3-dev \
  12. libqt4-dev \
  13. qtbase5-dev \
  14. libasound2-dev \
  15. libpulse-dev \
  16. libmagic-dev \
  17. libgl1-mesa-dev \
  18. libx11-dev \
  19. libx11-6:i386 \
  20. liblo-static \
  21. fluidsynth-static \
  22. mingw32-x-gcc \
  23. mingw32-x-pkgconfig \
  24. mingw64-x-gcc \
  25. mingw64-x-pkgconfig \
  26. wine-rt-dev
  27. # Fix for 32bit bridge link
  28. sudo ln -s /usr/lib/i386-linux-gnu/libX11.so.6 /usr/lib/i386-linux-gnu/libX11.so
  29. elif [ "${TARGET}" = "linux-strict" ]; then
  30. sudo apt-get install -y \
  31. g++-8 \
  32. g++-8-multilib \
  33. pkg-config \
  34. pyqt5-dev-tools \
  35. python3-pyqt5.qtsvg \
  36. python3-rdflib \
  37. libgtk2.0-dev \
  38. libgtk-3-dev \
  39. libqt4-dev \
  40. qtbase5-dev \
  41. libasound2-dev \
  42. libpulse-dev \
  43. libmagic-dev \
  44. libgl1-mesa-dev \
  45. libx11-dev \
  46. libx11-6:i386 \
  47. liblo-static \
  48. fluidsynth-static
  49. # Fix for 32bit bridge link
  50. sudo ln -s /usr/lib/i386-linux-gnu/libX11.so.6 /usr/lib/i386-linux-gnu/libX11.so
  51. elif [ "${TARGET}" = "linux-juce-strict" ]; then
  52. sudo apt-get install -y \
  53. g++-8 \
  54. pkg-config \
  55. pyqt5-dev-tools \
  56. python3-pyqt5.qtsvg \
  57. python3-rdflib \
  58. libgtk2.0-dev \
  59. libgtk-3-dev \
  60. libqt4-dev \
  61. qtbase5-dev \
  62. libasound2-dev \
  63. libjack-jackd2-dev \
  64. libfreetype6-dev \
  65. libmagic-dev \
  66. libgl1-mesa-dev \
  67. libx11-dev \
  68. libxext-dev \
  69. liblo-static \
  70. fluidsynth-static
  71. elif [ "${TARGET}" = "macos" ]; then
  72. sudo apt-get install -y \
  73. pkg-config \
  74. apple-x86-setup
  75. # mkdir /tmp/osx-macports-pkgs
  76. # cd /tmp/osx-macports-pkgs
  77. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-flac_1.2.1-1_all.deb
  78. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-libiconv_1.14-0_all.deb
  79. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-liblo_0.26-1_all.deb
  80. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-libogg_1.3.0-1_all.deb
  81. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-libsndfile_1.0.25-0_all.deb
  82. # wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/apple-macports-libvorbis_1.3.3-0_all.deb
  83. # cd ~
  84. # rm -r /tmp/osx-macports-pkgs
  85. elif [ "${TARGET}" = "win32" ]; then
  86. sudo apt-get install -y \
  87. mingw32-x-gcc \
  88. mingw32-x-pkgconfig
  89. elif [ "${TARGET}" = "win64" ]; then
  90. sudo apt-get install -y \
  91. mingw32-x-gcc \
  92. mingw32-x-pkgconfig \
  93. mingw64-x-gcc \
  94. mingw64-x-pkgconfig
  95. fi
  96. # mingw32-x-fluidsynth
  97. # mingw32-x-fftw
  98. # mingw32-x-liblo
  99. # mingw32-x-mxml
  100. # mingw32-x-zlib
  101. # mingw64-x-fluidsynth
  102. # mingw64-x-fftw
  103. # mingw64-x-liblo
  104. # mingw64-x-mxml
  105. # mingw64-x-zlib