summaryrefslogtreecommitdiff
path: root/community/pvoc/PKGBUILD
blob: 702924d535d78c4bdb2c8bdb79a9e300b0cfa806 (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 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: