• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.vscode/H25-Jun-2020-132130

doc/H25-Jun-2020-1,7961,303

lvtk/H25-Jun-2020-3,4711,469

plugins/H25-Jun-2020-196167

tests/H25-Jun-2020-701551

waflib/H25-Jun-2020-43,89134,792

.gitignoreH A D25-Jun-2020228 2521

.travis.ymlH A D25-Jun-2020228 138

AUTHORSH A D25-Jun-2020219 53

COPYINGH A D25-Jun-2020756 1411

ChangeLogH A D25-Jun-20203.5 KiB10387

README.mdH A D25-Jun-20201.7 KiB6047

lvtk.pc.inH A D25-Jun-2020229 119

wafH A D25-Jun-2020533 2214

wscriptH A D25-Jun-20205.4 KiB148114

README.md

1LV2 Toolkit
2===========
3
4This software package contains libraries that wrap the LV2 C API and extensions
5into easy to use C++ classes.
6
7Status
8------
9[![Build Status](https://travis-ci.org/lvtk/lvtk.svg?branch=master)](https://travis-ci.org/lvtk/lvtk)
10
11Building
12--------
13To build and install, run
14```
15$ ./waf configure
16$ ./waf build
17$ sudo ./waf install
18```
19To build without the UIs, run
20
21`$ ./waf configure --disable-ui build`
22
23To build documentation, run
24
25`$ ./waf configure --docs build`
26
27HTML documentation gets placed in build/doc/html
28
29Packaging
30---------
31It is recommended for the 2.0 variety of LVTK to **completely replace** version 1.
32
33However, if v1 and v2 are to be installed on the same system, you will want to
34use the `--bundle` option in configure.  This allows you to rename the `lvtk.lv2`
35bundle name so there aren't conflicts:
36```
37./waf configure --bundle=lvtk-2.lv2
38```
39
40ISC License
41-----------
42```
43Permission to use, copy, modify, and/or distribute this software for any
44purpose with or without fee is hereby granted, provided that the above
45copyright notice and this permission notice appear in all copies.
46
47THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
48WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
49MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
50ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
51WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
52ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
53OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
54```
55
56Issue Tracking
57--------------
58Please report bugs and feature requests here.
59https://github.com/lvtk/lvtk/issues
60