Build and installation instructions
===================================

Build-time requirements
-----------------------

* CMake >= 2.8.0 (http://www.cmake.org)
* pkg-config (http://pkg-config.freedesktop.org)
* NASPRO core >= 0.2.0 (http://naspro.atheme.org)
* Redland (http://www.librdf.org)
* LV2 core (http://lv2plug.in)
* LADSPA SDK (http://www.ladspa.org)
* DSSI SDK (http://dssi.sourceforge.net)
* ALSA (http://www.alsa-project.org)
    or libdssialsacompat (http://www.smbolton.com/linux.html)
* Some C compiler (only tested with gcc)

Runtime requirements
--------------------

* NASPRO core >= 0.2.0 (http://naspro.atheme.org)
* Redland (http://www.librdf.org)
* ALSA (http://www.alsa-project.org)
    or libdssialsacompat (http://www.smbolton.com/linux.html)

Building
--------

To configure the package use:

 $ cmake .

or, if building in some other directory:

 $ cmake <top-level sources directory>

You can specify installation directories like this:

 $ cmake -DVAR1=VALUE1 -DVAR2=VALUE2 ...

If VALUE is a relative path, it is considered as relative to the prefix
directory (CMAKE_INSTALL_PREFIX).

The build system understands the following variables VARx:

 * CMAKE_INSTALL_PREFIX   Installation prefix (the default value is determined
                                               by CMake)
 * LV2DIR_INSTALL         Where to put LV2 bundles (the default is lib/lv2)

Then, build with:

 $ make

And install with:

 $ make install

The generated Makefile supports DESTDIR.
