2009-10-10 02:23:22 +00:00
|
|
|
# Maintainer: Tobias Kieslich tobias [funnychar] archlinux org
|
|
|
|
# AUR-Maintainer: Andrea Scarpino <bash.lnx@gmail.com>
|
|
|
|
# Contributor: Peter Baldwin <bald_pete@hotmail.com>
|
|
|
|
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
|
|
|
|
|
|
|
pkgname=aubio
|
|
|
|
pkgver=0.3.2
|
|
|
|
pkgrel=3
|
|
|
|
pkgdesc="A library for audio labelling"
|
2009-10-19 03:17:58 +00:00
|
|
|
arch=('arm')
|
2009-10-10 02:23:22 +00:00
|
|
|
url="http://aubio.piem.org/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('libsamplerate' 'fftw' 'jack-audio-connection-kit')
|
|
|
|
options=('!libtool')
|
|
|
|
source=(http://aubio.piem.org/pub/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
md5sums=('ffc3e5e4880fec67064f043252263a44')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make || return 1
|
|
|
|
make DESTDIR=${startdir}/pkg install
|
|
|
|
}
|