blob: f3720fb963ca0980451c8c099f0cb86af6dc725b (
plain)
1 # Description: Collection of LADSPA/LV2/VST/JACK audio plugins for high-quality processing
2 # URL: https://github.com/zamaudio/zam-plugins
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: git jack ladspa libglvnd liblo lv2 zita-convolver
5
6 name=zam-plugins
7 version=3.12
8 release=1
9 source=(https://github.com/zamaudio/zam-plugins/archive/$version/$name-$version.tar.gz
10 https://github.com/DISTRHO/DPF/archive/68b3a57a78d814810972584ed571662fe5cfb8f0/dpf-68b3a57a78.tar.gz
11 zita-convolver4.patch system-zita-convolver.patch)
12
13 dpf_git=https://github.com/DISTRHO/DPF.git
14 zam_git=https://github.com/zamaudio/zam-plugins.git
15
16 build() {
17 cd $name-$version
18 export HAVE_ZITA_CONVOLVER=true
19 cp -r $SRC/DPF-68b3a57a78d814810972584ed571662fe5cfb8f0/* dpf/
20 make
21 make DESTDIR=$PKG PREFIX='/usr/' install
22 }
|