blob: 67dac8307e1e8b407eff6668b20aedc35a0d5987 (
plain)
1 # Description: LV2/DSSI/LADSPA plug-in suite and standalone Jack host
2 # URL: https://calf-studio-gear.org
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: fluidsynth lv2
5 # Optional: fftw gtk jack pulseaudio
6
7 name=calf
8 version=0.90.3
9 release=1
10 source=(https://calf-studio-gear.org/files/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 autoreconf -vfi
15 ./configure --prefix=/usr \
16 --with-lv2 \
17 --with-lv2-dir=/usr/lib/lv2 \
18 --enable-experimental \
19 --enable-sse
20 make
21 make DESTDIR=$PKG install
22 rm -fr $PKG/usr/share/doc
23 }
|