blob: 32c6bf0335dbd7aff12164acda142d0a2bf9568b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Synthpod
## Lightweight cross-platform LV2 host and meta plugin
### Build status
[](https://travis-ci.org/OpenMusicKontrollers/synthpod)
### About
### Dependencies
* [lv2](http://lv2plug.in) (LV2 plugin specification)
* [lilv](http://drobilla.net/software/lilv/) (LV2 plugin host library)
* [libuv](http://docs.libuv.org/) (Lightweight event library)
* [JACK](http://jackaudio.org/) (JACK audio connection kit)
* [PortAudio](http://portaudio.com/) (Portable cross-platform audio I/O)
* [RtMidi](http://www.music.mcgill.ca/~gary/rtmidi/) (Realtime cross-platform MIDI I/O)
* [Elementary](http://docs.enlightenment.org/auto/elementary/) (EFL UI toolkit)
### Build / install
git clone https://github.com/OpenMusicKontrollers/synthpod.git
cd synthpod
git submodule update --init
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>.
|