diff options
author | David Robillard <d@drobilla.net> | 2010-10-04 18:21:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-04 18:21:08 +0000 |
commit | cef9811dac46a9d54dab0f0d82ce5c3ae032fc7c (patch) | |
tree | 632b911da25fc24b6b3d331d7ceffc22606b8e5b /core.lv2/INSTALL | |
parent | 61842745ab15454ee66be54a6f3bcc148a75406f (diff) | |
download | lv2-cef9811dac46a9d54dab0f0d82ce5c3ae032fc7c.tar.xz |
Initial import of lv2plug.in universe.
Diffstat (limited to 'core.lv2/INSTALL')
-rw-r--r-- | core.lv2/INSTALL | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/core.lv2/INSTALL b/core.lv2/INSTALL new file mode 100644 index 0000000..da0ae59 --- /dev/null +++ b/core.lv2/INSTALL @@ -0,0 +1,52 @@ +This software requires only Python to build. + += LV2 Core package instructions = + +This package contains a header file, pkg-config file, and an LV2 bundle; +there is no code that requires compiling (i.e. this is NOT a library). +Accordingly, the versioning scheme is simpler than a library: the major +number is the version number of the LV2 specification, and the minor +number is the version of this package. There is no 'micro' number. + +The configure option --bundle-only can be used to install only the bundle. +This can be used in conjunction with the --lv2-user option to install +only the bundle to the user-specific (i.e. in your home directory) LV2 +path, if you do not have write access to the system. + +Distribution packages should install everything, as apps may depend +on 'lv2core' (via pkg-config) to ensure both the header and data +bundle are present. + + += Generic waf instructions = + +Like an auto* project, building has three phases: + + +* Configure: ./waf configure [OPTIONS] + + Example: + ./waf configure --prefix=/some/where + + The default prefix is /usr/local + + +* Build: ./waf [OPTIONS] + + Example: + ./waf + + +* Install: ./waf install [OPTIONS] + + The environment variable DESTDIR can be used to add any prefix to + the install paths (useful for packaging). Example: + + DESTDIR=/home/drobilla/packages ./waf install + + +*** IMPORTANT: You must use absolute paths everywhere + + +Run './waf --help' for detailed option information. + |