aboutsummaryrefslogtreecommitdiffstats
path: root/ns/lv2core/INSTALL
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-21 01:36:00 +0000
committerDavid Robillard <d@drobilla.net>2011-11-21 01:36:00 +0000
commiteb43c8896480114b224755e824fae2e2f7485256 (patch)
tree26e91bd8dc6421d2296a33991e90f7dcb546b079 /ns/lv2core/INSTALL
parentdf79255ccef7fb5d091e9d4e52f3c46545b53282 (diff)
downloadlv2-eb43c8896480114b224755e824fae2e2f7485256.tar.xz
Move ns to lv2/ns so repository top level can be used as an include dir directly.
Diffstat (limited to 'ns/lv2core/INSTALL')
-rw-r--r--ns/lv2core/INSTALL40
1 files changed, 0 insertions, 40 deletions
diff --git a/ns/lv2core/INSTALL b/ns/lv2core/INSTALL
deleted file mode 100644
index c9c49dc..0000000
--- a/ns/lv2core/INSTALL
+++ /dev/null
@@ -1,40 +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 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:
-
-Configure: ./waf configure [OPTIONS]
- e.g.: ./waf configure --prefix=/some/where
-
- The default prefix is /usr/local
-
-
-Build: ./waf [OPTIONS]
- e.g.: ./waf
-
-
-Install: ./waf install [OPTIONS]
- e.g.: ./waf install
- e.g.: DESTDIR=/home/drobilla/packages ./waf install
-
- The environment variable DESTDIR can be used to add any prefix to
- the install paths (useful for packaging).
-
-
-Run './waf --help' for detailed option information.