diff options
author | David Robillard <d@drobilla.net> | 2012-03-26 03:56:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-26 03:56:34 +0000 |
commit | baed7d9386880ed229ebe284f44554ff44f2b8d3 (patch) | |
tree | 23fee053cec56b2da0c4cef71b89805d43e3c655 /lv2/lv2plug.in/ns/lv2core/INSTALL | |
parent | cb9d19db9545521bad16fe354b8ae26614127a29 (diff) | |
download | lv2-baed7d9386880ed229ebe284f44554ff44f2b8d3.tar.xz |
Remove individual extension pkg-config files and build scripts.
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core/INSTALL')
-rw-r--r-- | lv2/lv2plug.in/ns/lv2core/INSTALL | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/INSTALL b/lv2/lv2plug.in/ns/lv2core/INSTALL deleted file mode 100644 index 16b1427..0000000 --- a/lv2/lv2plug.in/ns/lv2core/INSTALL +++ /dev/null @@ -1,41 +0,0 @@ -This software requires only Python to build. The build system, based on waf, -is included in this source distribution. - - -LV2Core -======= - -This package contains everything necessary to compile against and/or use LV2 -plugins and extensions: a header file, pkg-config file, and LV2 bundle (with -Turtle files). - -The configure option --bundle-only can be used to install only the lv2core.lv2 -bundle. This is useful for installing the bundle to a project-specific or -user-specific location (e.g. ~/.lv2). - -See README for details on how to correctly package LV2, and how to depend on -LV2 in other projects. - - -Generic Waf Instructions -======================== - -As with most build systems, building and installing a project with waf is done -in three separate stages: - - 1. ./waf configure [OPTIONS] - 2. ./waf build - 3. ./waf install - -The default command is build. For example: - - ./waf configure --prefix=/some/where - ./waf -j2 - sudo ./waf install - -The environment variable DESTDIR can be used to add a prefix to all install -paths (useful for packaging), for example: - - DESTDIR=./lv2core.pkg ./waf install - -Run './waf --help' for detailed option information. |