blob: db44f15583fdf0b72ad118a2f04f02fd901a06ad (
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
|
# $Id: PKGBUILD 110720 2014-05-05 19:45:33Z speps $
# Maintainer : speps <speps at aur dot archlinux dot org>
pkgname=rev-plugins
pkgver=0.7.1
pkgrel=1
pkgdesc="LADSPA stereo and ambisonic reverb plugin based on zita-rev1"
arch=('i686' 'x86_64')
url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
license=('GPL')
groups=('ladspa-plugins')
depends=('ladspa')
source=("${url}../downloads/REV-plugins-$pkgver.tar.bz2")
md5sums=('9f0be0d26592f67ba5fe16102c6bc332')
build() {
cd REV-plugins-$pkgver
make
}
package() {
cd REV-plugins-$pkgver
# plugin
install -Dm755 zita-reverbs.so \
"$pkgdir/usr/lib/ladspa/zita-reverbs.so"
}
|