32 lines
804 B
Bash
32 lines
804 B
Bash
# Template file for 'aubio'
|
|
pkgname=aubio
|
|
version=0.4.9
|
|
revision=1
|
|
build_style=waf
|
|
# XXX lash, pure and swig support.
|
|
hostmakedepends="python pkg-config txt2man"
|
|
makedepends="libsamplerate-devel fftw-devel jack-devel ffmpeg-devel"
|
|
short_desc="Library for audio labelling"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://aubio.org"
|
|
distfiles="${homepage}/pub/${pkgname}-${version}.tar.bz2"
|
|
checksum=d48282ae4dab83b3dc94c16cf011bcb63835c1c02b515490e1883049c3d1f3da
|
|
|
|
libaubio_package() {
|
|
short_desc+=" - Runtime libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
aubio-devel_package() {
|
|
depends="libaubio-${version}_${revision}"
|
|
short_desc+=" - Development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|