diff options
author | root <root@rshg054.dnsready.net> | 2013-08-14 01:35:52 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-14 01:35:52 -0700 |
commit | 35ddd3815641e4564d75c5b402f7f0cf48628167 (patch) | |
tree | c182205aac34cc99f9059a2e5f5d2c823a7bb258 /community/wah-plugins | |
parent | 67ed1f749df552e8649438980b92b257f868eb8d (diff) |
Wed Aug 14 01:35:17 PDT 2013
Diffstat (limited to 'community/wah-plugins')
-rw-r--r-- | community/wah-plugins/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/wah-plugins/PKGBUILD b/community/wah-plugins/PKGBUILD new file mode 100644 index 000000000..3cf3fcb9c --- /dev/null +++ b/community/wah-plugins/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 95499 2013-08-13 03:27:45Z speps $ +# Maintainer : speps <speps at aur dot archlinux dot org> +# Contributor: Renato Budinich <rennabh at gmail dot com> + +pkgname=wah-plugins +pkgver=0.0.2 +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=('e203e3458a4cd75cc442d70b8f124db9') + +build() { + cd "$srcdir/WAH-plugins-$pkgver" + make +} + +package() { + cd "$srcdir/WAH-plugins-$pkgver" + + # plugin + install -Dm755 autowah.so \ + "$pkgdir/usr/lib/ladspa/autowah.so" +} + +# vim:set ts=2 sw=2 et: |