aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/lv2core
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/lv2plug.in/ns/lv2core')
-rw-r--r--lv2/lv2plug.in/ns/lv2core/AUTHORS13
-rw-r--r--lv2/lv2plug.in/ns/lv2core/COPYING16
-rw-r--r--lv2/lv2plug.in/ns/lv2core/INSTALL41
3 files changed, 0 insertions, 70 deletions
diff --git a/lv2/lv2plug.in/ns/lv2core/AUTHORS b/lv2/lv2plug.in/ns/lv2core/AUTHORS
deleted file mode 100644
index 64febf8..0000000
--- a/lv2/lv2plug.in/ns/lv2core/AUTHORS
+++ /dev/null
@@ -1,13 +0,0 @@
-LV2 is written and maintained by:
-
-David Robillard <d@drobilla.net>
-Steve Harris <steve@plugin.org.uk>
-
-with the input and help of many others.
-
-LV2 is based on LADSPA, which was by:
- Paul Barton-Davis
- Richard W.E. Furse
- Stefan Westerfeld
-
-Thanks to all members of the free software community who made LV2 possible.
diff --git a/lv2/lv2plug.in/ns/lv2core/COPYING b/lv2/lv2plug.in/ns/lv2core/COPYING
deleted file mode 100644
index c46d5dd..0000000
--- a/lv2/lv2plug.in/ns/lv2core/COPYING
+++ /dev/null
@@ -1,16 +0,0 @@
-Copyright 2006-2011 Steve Harris, David Robillard.
-
-Based on LADSPA, Copyright 2000-2002 Richard W.E. Furse,
-Paul Barton-Davis, Stefan Westerfeld.
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file
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.