diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-04-15 10:27:16 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-04-15 10:30:31 +0200 |
commit | 8fd20ada84f7c3d73974c78ad205e5bd43a6ba72 (patch) | |
tree | eb16521e1cbe03254fba98b0f27d742ea55bc92b /README.md | |
parent | 78c9c77af80613af81f5411d152d36f5006af889 (diff) | |
download | moony.lv2-8fd20ada84f7c3d73974c78ad205e5bd43a6ba72.tar.xz |
add README.md, COPYING and travis recipe.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c7cbe22 --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +# Lua.lv2 + +## Realtime Lua as programmable glue in LV2 + +### Webpage + +Get more information at: [http://open-music-kontrollers.ch/lv2/lua](http://open-music-kontrollers.ch/lv2/lua) + +### Build status + +[](https://travis-ci.org/OpenMusicKontrollers/lua.lv2) + +### Plugins + +#### Lua for Control Ports + +#### Lua for Atom Ports + +### Dependencies + +* [LV2](http://lv2plug.in) (LV2 Plugin Standard) +* [Lua](http://lua.org) (Lightweight embeddable language) +* [EFL](http://docs.enlightenment.org/stable/elementary/) (Enlightenment Foundation Libraries) +* [Elementary](http://docs.enlightenment.org/stable/efl/) (Lightweight GUI Toolkit) + +### Build / install + + git clone https://github.com/OpenMusicKontrollers/lua.lv2.git + cd lua.lv2 + mkdir build + cd build + cmake -DCMAKE_C_FLAGS="-std=gnu99" .. + make + sudo make install + +### License + +Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch) + +This is free software: you can redistribute it and/or modify +it under the terms of the Artistic License 2.0 as published by +The Perl Foundation. + +This source is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +Artistic License 2.0 for more details. + +You should have received a copy of the Artistic License 2.0 +along the source as a COPYING file. If not, obtain it from +<http://www.perlfoundation.org/artistic_license_2_0>. |