35 lines
1,019 B
Bash
35 lines
1,019 B
Bash
# Template build file for 'alsa-lib'.
|
|
pkgname=alsa-lib
|
|
version=1.0.29
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-pythonlibs=-lpython2.7 --with-pythonincludes=-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
hostmakedepends="automake libtool pkg-config python-devel"
|
|
makedepends="python-devel"
|
|
short_desc="The Advanced Linux Sound Architecture (ALSA) library"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="LGPL-2.1"
|
|
homepage="http://www.alsa-project.org"
|
|
distfiles="ftp://ftp.alsa-project.org/pub/lib/$pkgname-$version.tar.bz2"
|
|
checksum=73043c35eb9636be0f4af6a240235c213f12a25feb1f04aeeac8cb7e30fcbdd0
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
alsa-lib-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
vmove usr/share/aclocal
|
|
}
|
|
}
|
|
alsa-lib-python_package() {
|
|
short_desc+=" - python smixer plugin"
|
|
pkg_install() {
|
|
vmove usr/lib/alsa-lib/smixer/smixer-python.so
|
|
}
|
|
}
|