mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
753 B
Bash
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
|
|
}
|