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 945B

11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. `$ python3 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. - liblo
  15. - Qt4/5
  16. - PyQt4/5 (python3 version)
  17. - X11 (Linux only)
  18. Optional for extended LV2 UIs support:
  19. - Gtk2
  20. - Gtk3
  21. - Qt4
  22. - Qt5
  23. Optional for extra samplers support:
  24. - FluidSynth
  25. - LinuxSampler
  26. Optional for extra native plugins:
  27. - NTK
  28. - fftw3
  29. - mxml
  30. - zlib
  31. Optional but recommended:
  32. - python3-rdflib (for LADSPA-RDF support)
  33. You can use: <br/>
  34. `$ make features` <br/>
  35. To find out which dependencies are missing.
  36. <br/>