updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / resample / PKGBUILD
bloba6243ce95027f8e0535df3d55436f89a6e48960d
1 # Contributor: Jonathan Liu <net147@gmail.com>
2 pkgname=resample
3 pkgver=1.8.1
4 pkgrel=1
5 pkgdesc="Sampling-rate conversion and filter design utilities"
6 arch=('i686' 'x86_64')
7 url="http://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html"
8 license=('LGPL2')
9 depends=('glibc')
10 source=("http://ccrma.stanford.edu/~jos/gz/$pkgname-$pkgver.tar.gz")
11 md5sums=('c3c1c64e4bb9b0bdc6062b8ad619aef1')
13 build() {
14   cd "$srcdir/$pkgname-$pkgver"
16   ./configure --prefix=/usr --mandir=/usr/share/man
17   make || return 1
18   make DESTDIR="$pkgdir" install
21 # vim:set ts=2 sw=2 et: