diff options
Diffstat (limited to 'extra/aubio/PKGBUILD')
-rw-r--r-- | extra/aubio/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/extra/aubio/PKGBUILD b/extra/aubio/PKGBUILD index e172e1fe1..29f3848d0 100644 --- a/extra/aubio/PKGBUILD +++ b/extra/aubio/PKGBUILD @@ -1,22 +1,27 @@ -# $Id: PKGBUILD 122072 2011-05-02 05:51:30Z andrea $ +# $Id: PKGBUILD 150683 2012-02-20 06:58:41Z allan $ # Maintainer: Tobias Kieslich tobias [funnychar] archlinux org # Contributor: Peter Baldwin <bald_pete@hotmail.com> # Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> pkgname=aubio pkgver=0.3.2 -pkgrel=4 +pkgrel=5 pkgdesc="A library for audio labelling" arch=('i686' 'x86_64') url="http://aubio.org/" license=('GPL') depends=('libsamplerate' 'fftw' 'jack') options=('!libtool') -source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz") -md5sums=('ffc3e5e4880fec67064f043252263a44') +source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz" + aubio-linking.patch) +md5sums=('ffc3e5e4880fec67064f043252263a44' + '674259ce137ca28ef24bd62482829cd5') build() { cd "${srcdir}/${pkgname}-${pkgver}" + + patch -Np1 -i $srcdir/aubio-linking.patch + ./configure --prefix=/usr make } |