From cef9811dac46a9d54dab0f0d82ce5c3ae032fc7c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 4 Oct 2010 18:21:08 +0000 Subject: Initial import of lv2plug.in universe. --- core.lv2/INSTALL | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 core.lv2/INSTALL (limited to 'core.lv2/INSTALL') 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. + -- cgit v1.2.1