summaryrefslogtreecommitdiff
path: root/community/pvoc
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-14 01:35:52 -0700
committerroot <root@rshg054.dnsready.net>2013-08-14 01:35:52 -0700
commit35ddd3815641e4564d75c5b402f7f0cf48628167 (patch)
treec182205aac34cc99f9059a2e5f5d2c823a7bb258 /community/pvoc
parent67ed1f749df552e8649438980b92b257f868eb8d (diff)
Wed Aug 14 01:35:17 PDT 2013
Diffstat (limited to 'community/pvoc')
-rw-r--r--community/pvoc/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/pvoc/PKGBUILD b/community/pvoc/PKGBUILD
new file mode 100644
index 000000000..702924d53
--- /dev/null
+++ b/community/pvoc/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 95491 2013-08-13 03:21:30Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+
+pkgname=pvoc
+pkgver=0.1.12
+pkgrel=1
+pkgdesc="LADSPLA plugins and a tool for time compression/expansion using phase-vocoding"
+arch=('i686' 'x86_64')
+url="http://quitte.de/dsp/pvoc.html"
+license=('GPL')
+groups=('ladspa-plugins')
+depends=('ladspa' 'fftw' 'libsndfile')
+source=("http://quitte.de/dsp/pvoc_$pkgver.tar.gz")
+md5sums=('6171b97e0d8aa5545c780d4f8dc15167')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX=/usr
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX="$pkgdir/usr" \
+ MAN1DEST="$pkgdir/usr/share/man/man1" install
+}
+
+# vim:set ts=2 sw=2 et: