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

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.py`
  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
  16. - PyQt4 (python3 version)
  17. Optional for extended LV2 UIs support:
  18. - Gtk2
  19. - Gtk3
  20. - Qt5
  21. Optional for extra samplers support:
  22. - FluidSynth
  23. - LinuxSampler
  24. Optional for extra native plugins:
  25. - OpenGL
  26. - NTK
  27. - libsmf
  28. - libsndfile
  29. - ffmpeg/libav
  30. - fftw3
  31. - mxml
  32. - zlib
  33. To run Carla-Control, you'll additionally need:
  34. - python3-liblo
  35. Optional but recommended:
  36. - python3-rdflib (for LADSPA-RDF support)
  37. You can use: <br/>
  38. `$ make features` <br/>
  39. To find out which dependencies are missing.
  40. <br/>