Abstract all RDF stuff into 3 functions.
[lv2.git] / core.lv2 / INSTALL
blobda0ae597743f4eed4f0d6c4f31b9111ccb4f0ff1
1 This software requires only Python to build.
3 = LV2 Core package instructions =
5 This package contains a header file, pkg-config file, and an LV2 bundle;
6 there is no code that requires compiling (i.e. this is NOT a library).
7 Accordingly, the versioning scheme is simpler than a library: the major
8 number is the version number of the LV2 specification, and the minor
9 number is the version of this package.  There is no 'micro' number.
11 The configure option --bundle-only can be used to install only the bundle.
12 This can be used in conjunction with the --lv2-user option to install
13 only the bundle to the user-specific (i.e. in your home directory) LV2
14 path, if you do not have write access to the system.
16 Distribution packages should install everything, as apps may depend
17 on 'lv2core' (via pkg-config) to ensure both the header and data
18 bundle are present.
21 = Generic waf instructions =
23 Like an auto* project, building has three phases:
26 * Configure:       ./waf configure [OPTIONS]
28   Example:
29     ./waf configure --prefix=/some/where
31   The default prefix is /usr/local
34 * Build:           ./waf [OPTIONS]
36   Example:
37     ./waf
40 * Install:         ./waf install [OPTIONS]
42   The environment variable DESTDIR can be used to add any prefix to
43   the install paths (useful for packaging).  Example:
45   DESTDIR=/home/drobilla/packages ./waf install
48 *** IMPORTANT: You must use absolute paths everywhere
51 Run './waf --help' for detailed option information.