diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-04 10:10:35 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-04 10:10:35 -0300 |
commit | b9ab7ef683fd366635faca49342ee005846037ab (patch) | |
tree | 3bb0ff57a43d068e85dc5318887f700b071c7f8f /extra/aubio | |
parent | 7046a475b24925c0ec7816ef7d2cdcf3b9cd4eb0 (diff) | |
parent | ab1410d33401cf1fc4a384bb0b2d9901c8fe8d14 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/gimmie/PKGBUILD
community/glipper-old/PKGBUILD
community/glipper/PKGBUILD
community/lcms2/PKGBUILD
community/libpanelappletmm/PKGBUILD
community/panflute/PKGBUILD
community/sensors-applet/PKGBUILD
community/wtf/PKGBUILD
community/xmonad-log-applet/PKGBUILD
core/binutils/PKGBUILD
core/tzdata/PKGBUILD
extra/a52dec/PKGBUILD
extra/aubio/PKGBUILD
extra/automoc4/PKGBUILD
extra/deskbar-applet/PKGBUILD
extra/eject/PKGBUILD
extra/ekiga/PKGBUILD
extra/gnome-netstatus/PKGBUILD
extra/gnome-python-desktop/PKGBUILD
extra/htdig/PKGBUILD
extra/ktorrent/PKGBUILD
extra/libgail-gnome/PKGBUILD
extra/libktorrent/PKGBUILD
extra/libofa/PKGBUILD
extra/netspeed-applet/PKGBUILD
extra/openexr/PKGBUILD
extra/postgresql/PKGBUILD
extra/pulseaudio-mixer-applet/PKGBUILD
extra/seahorse-plugins/PKGBUILD
extra/telepathy-qt4/PKGBUILD
libre/kernel26-libre/PKGBUILD
testing/libtool/PKGBUILD
testing/xfsprogs/PKGBUILD
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 26851a036..517f756d6 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' 'mips64el') -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 } |