core/aubio/PKGBUILD
2014-03-04 14:44:30 +00:00

24 lines
496 B
Bash

pkgname=aubio
pkgver=0.3.2
pkgrel=2
pkgdesc="A library for audio labelling"
arch=('x86_64')
url="http://aubio.piem.org/"
license=('GPL')
depends=('libsamplerate' 'fftw' 'jack')
options=('!libtool')
source=(http://aubio.piem.org/pub/${pkgname}-${pkgver}.tar.gz)
md5sums=('ffc3e5e4880fec67064f043252263a44')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
export LDFLAGS='-lm'
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}