naspro
view naspro-bridges-bad/INSTALL @ 174:4f7243a606b1
Updated copyright notices and build system
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Sat May 01 21:51:33 2010 +0300 (2010-05-01) |
| parents | |
| children | 7169a8909d53 |
line source
1 Build and installation instructions
2 ===================================
4 Build-time requirements
5 -----------------------
7 * CMake >= 2.8.0 (http://www.cmake.org)
8 * pkg-config (http://pkg-config.freedesktop.org)
9 * NASPRO core >= 0.2.0 (http://naspro.atheme.org)
10 * Redland (http://www.librdf.org)
11 * LV2 core (http://lv2plug.in)
12 * LADSPA SDK (http://www.ladspa.org)
13 * DSSI SDK (http://dssi.sourceforge.net)
14 * ALSA (http://www.alsa-project.org)
15 or libdssialsacompat (http://www.smbolton.com/linux.html)
16 * Some C compiler (only tested with gcc)
18 Runtime requirements
19 --------------------
21 * NASPRO core >= 0.2.0 (http://naspro.atheme.org)
22 * Redland (http://www.librdf.org)
23 * ALSA (http://www.alsa-project.org)
24 or libdssialsacompat (http://www.smbolton.com/linux.html)
26 Building
27 --------
29 To configure the package use:
31 $ cmake .
33 or, if building in some other directory:
35 $ cmake <top-level sources directory>
37 You can specify installation directories like this:
39 $ cmake -DVAR1=VALUE1 -DVAR2=VALUE2 ...
41 If VALUE is a relative path, it is considered as relative to the prefix
42 directory (CMAKE_INSTALL_PREFIX).
44 The build system understands the following variables VARx:
46 * CMAKE_INSTALL_PREFIX Installation prefix (the default value is determined
47 by CMake)
48 * LV2DIR_INSTALL Where to put LV2 bundles (the default is lib/lv2)
50 Then, build with:
52 $ make
54 And install with:
56 $ make install
