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.md 1.1KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
9 years ago
11 years ago
10 years ago
11 years ago
11 years ago
9 years ago
11 years ago
9 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # INSTALL for Carla
  2. To install Carla, simply run as usual:
  3. ```
  4. $ make
  5. $ [sudo] make install
  6. ```
  7. You can run it without installing, by using instead:
  8. ```
  9. $ make
  10. $ ./source/carla`
  11. ```
  12. Packagers can make use of the `PREFIX` and `DESTDIR` variable during install, like this:
  13. ```
  14. $ make install PREFIX=/usr DESTDIR=./test-dir
  15. ```
  16. ## BUILD DEPENDENCIES
  17. The required build dependencies are: *(devel packages of these)*
  18. - PyQt4/5 (python3 version)
  19. Optional for extra engine features:
  20. - libmagic (for auto-detection of binary types, needed for plugin-bridges)
  21. - liblo (for OSC support)
  22. Optional for extra Linux-only engine features:
  23. - ALSA
  24. - PulseAudio
  25. - X11 (internal/LV2/VST2 X11 UI support)
  26. Optional for extended LV2 UIs support: (Linux only)
  27. - Gtk2
  28. - Gtk3
  29. - Qt4
  30. - Qt5
  31. Optional for extra samplers support:
  32. - FluidSynth (SF2)
  33. - LinuxSampler (GIG and SFZ)
  34. Optional for extra native plugins:
  35. - fftw3
  36. - mxml
  37. - zlib
  38. - NTK
  39. - OpenGL
  40. - ProjectM
  41. Optional but recommended:
  42. - python3-rdflib (for LADSPA-RDF support)
  43. You can use:
  44. ```
  45. $ make features
  46. ```
  47. To find out which dependencies are missing.