blob: 5bbb73a0e42bb4b0f823d6762f7e6ff568745e04 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Synthpod
## Lightweight Nonlinear LV2 Plugin Container
### Build status
[](https://travis-ci.org/OpenMusicKontrollers/synthpod)
### About
Get more detailed information at [http://open-music-kontrollers.ch/lv2/synthpod/#](http://open-music-kontrollers.ch/lv2/synthpod/#).
### Dependencies
* [LV2](http://lv2plug.in) (LV2 plugin specification)
* [lilv](http://drobilla.net/software/lilv/) (LV2 plugin host library)
* [JACK](http://jackaudio.org/) (JACK audio connection kit)
* [Elementary](http://docs.enlightenment.org/auto/elementary/) (EFL UI toolkit)
* [ALSA](http://alsa-project.org) (Advanced Linux Sound Architecture)
* [zita-alsa-pcmi](http://kokkinizita.linuxaudio.org/linuxaudio/) (ALSA PCM high-level API)
### Build / install
git clone https://github.com/OpenMusicKontrollers/synthpod.git
cd synthpod
mkdir build
cd build
cmake ..
make
sudo make install
#### ArchLinux
# build/runtime dependencies
sudo pacman -S cmake lv2 lilv elementary jack zita-alsa-pcmi
#### Debian (>= jessie) and derivatives (Ubuntu, Mint, ...)
# build dependencies
sudo apt-get install cmake lv2-dev liblilv-dev libelementary-dev libjack-dev libasound2-dev libzita-alsa-pcmi-dev
# runtime dependencies
sudo apt-get install libevas1-engine-software-x11 libevas1-engine-gl-x11 libelementary2 jackd libzita-alsa-pcmi0
#### Ubuntu (<= 14.04)
# synthpod needs libefl(>=1.8) and libelementary(>=1.8), you may thus need to add a ppa
sudo add-apt-repository -y ppa:enlightenment-git/ppa
### 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>.
|