summaryrefslogtreecommitdiff
path: root/community/wah-plugins/PKGBUILD
blob: 75f3f11f9b90785a3a5006e47f34dcd65b7c162a (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
# $Id: PKGBUILD 107095 2014-03-12 11:37:07Z speps $
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: Renato Budinich <rennabh at gmail dot com>

pkgname=wah-plugins
pkgver=0.1.0
pkgrel=1
pkgdesc="LADSPA Wah filter plugin"
arch=('i686' 'x86_64')
url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
license=('GPL')
groups=('ladspa-plugins')
depends=('ladspa')
source=("${url}../downloads/WAH-plugins-$pkgver.tar.bz2")
md5sums=('d5df8cb2c88a153316a711512c1646c7')

build() {
  cd WAH-plugins-$pkgver
  make
}

package() {
  cd WAH-plugins-$pkgver

  # plugin
  install -Dm755 autowah.so \
    "$pkgdir/usr/lib/ladspa/autowah.so"
}

# vim:set ts=2 sw=2 et: