updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / libfishsound / PKGBUILD
blob2b144ad3d812b940b77de657f82eaa5cd3afb35b
1 #Contributor farid <farid at archlinux-br.org>
3 pkgname=libfishsound
4 pkgver=1.0.0
5 pkgrel=1
6 pkgdesc="A simple programming interface that wraps Xiph.Org audio codecs"
7 arch=('i686' 'x86_64')
8 url="http://www.xiph.org/fishsound/"
9 license="custom"
10 depends=('libvorbis' 'speex' 'libogg' 'ladspa' 'flac')
11 makedepends=('libtool')
12 source=(http://downloads.xiph.org/releases/libfishsound/$pkgname-$pkgver.tar.gz)
13 md5sums=('02c5c7b361a35c9da3cf311d68800dab')
15 build() {
16         cd $srcdir/$pkgname-$pkgver/
17         ./configure --prefix=/usr
18         make || return 1
19         make DESTDIR=$startdir/pkg docdir=./docs install
20         install -D COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING
21