summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a6243ce95027f8e0535df3d55436f89a6e48960d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Contributor: Jonathan Liu <net147@gmail.com>
pkgname=resample
pkgver=1.8.1
pkgrel=1
pkgdesc="Sampling-rate conversion and filter design utilities"
arch=('i686' 'x86_64')
url="http://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html"
license=('LGPL2')
depends=('glibc')
source=("http://ccrma.stanford.edu/~jos/gz/$pkgname-$pkgver.tar.gz")
md5sums=('c3c1c64e4bb9b0bdc6062b8ad619aef1')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  ./configure --prefix=/usr --mandir=/usr/share/man
  make || return 1
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: