blob: 8055744c36bcfe24abd46d9983a0f35b60572877 (
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.14
8 release=1
9 source=(https://github.com/zamaudio/zam-plugins/archive/$version/$name-$version.tar.gz
10 https://github.com/DISTRHO/DPF/archive/08669d1bc30c6e971fde800eade4ca40104ba8b2/dpf-08669d1.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-08669d1bc30c6e971fde800eade4ca40104ba8b2/* dpf/
20 make
21 make DESTDIR=$PKG PREFIX='/usr/' install
22 }
|