summaryrefslogtreecommitdiff
path: root/community/g2reverb/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/g2reverb/PKGBUILD')
-rw-r--r--community/g2reverb/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/g2reverb/PKGBUILD b/community/g2reverb/PKGBUILD
new file mode 100644
index 000000000..c78895ef0
--- /dev/null
+++ b/community/g2reverb/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=g2reverb
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="LADSPA stereo reverb plugin based on greverb"
+arch=('i686' 'x86_64')
+url="http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("${url}../downloads/$pkgname-$pkgver.tar.bz2")
+md5sums=('072c2af1f0ed526be432ede7e7a529ae')
+
+build() {
+ cd $pkgname-$pkgver
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ # plugin
+ install -Dm755 $pkgname.so \
+ "$pkgdir/usr/lib/ladspa/$pkgname.so"
+}