mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:37:15 +08:00
20 lines
490 B
Bash
20 lines
490 B
Bash
pkgname=aubio
|
|
pkgver=0.3.2
|
|
pkgrel=1
|
|
pkgdesc="A library for audio labelling"
|
|
arch=('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}
|
|
export LDFLAGS='-lm'
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|