PKGBUILDs/extra/aubio/PKGBUILD
2009-10-09 21:23:22 -05:00

24 lines
753 B
Bash

# $Id: PKGBUILD,v 1.1 2008/03/15 17:43:46 BaSh Exp $
# 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"
arch=('i686' 'x86_64')
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
}