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.2KB

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