diff options
author | root <root@rshg047.dnsready.net> | 2011-05-04 12:58:32 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-05-04 12:58:32 +0000 |
commit | 9780d07c31b22125ad7ecba4e281ff41194f95be (patch) | |
tree | 2336cb3e1bd98fe4b7631eb175c25f90a243815a /extra/aubio | |
parent | ddb2605f6bccbdb398f3937ff21e4688915a450d (diff) |
Wed May 4 12:58:31 UTC 2011
Diffstat (limited to 'extra/aubio')
-rw-r--r-- | extra/aubio/PKGBUILD | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/extra/aubio/PKGBUILD b/extra/aubio/PKGBUILD index 4d9498afb..e172e1fe1 100644 --- a/extra/aubio/PKGBUILD +++ b/extra/aubio/PKGBUILD @@ -1,24 +1,27 @@ -# $Id: PKGBUILD 12257 2008-09-12 03:03:42Z eric $ +# $Id: PKGBUILD 122072 2011-05-02 05:51:30Z andrea $ # 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 +pkgrel=4 pkgdesc="A library for audio labelling" arch=('i686' 'x86_64') -url="http://aubio.piem.org/" +url="http://aubio.org/" license=('GPL') -depends=('libsamplerate' 'fftw' 'jack-audio-connection-kit') +depends=('libsamplerate' 'fftw' 'jack') options=('!libtool') -source=(http://aubio.piem.org/pub/${pkgname}-${pkgver}.tar.gz) +source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz") md5sums=('ffc3e5e4880fec67064f043252263a44') build() { - cd ${startdir}/src/${pkgname}-${pkgver} + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr - make || return 1 - make DESTDIR=${startdir}/pkg install + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |