37 lines
867 B
Bash
37 lines
867 B
Bash
# Template file for 'wavpack'
|
|
pkgname=wavpack
|
|
version=5.0.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="An audio codec (lossy and lossless)"
|
|
homepage="http://www.wavpack.com/"
|
|
license="3-clause-BSD"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
distfiles="http://www.wavpack.com/${pkgname}-${version}.tar.bz2"
|
|
checksum=918d7e32a19598df543b17fff840b10a0880f87296f9e32af454d256b6a64049
|
|
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686|*x86_64*) configure_args+=" --enable-mmx";;
|
|
esac
|
|
}
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
libwavpack_package() {
|
|
short_desc+=" - shared library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
wavpack-devel_package() {
|
|
depends="libwavpack>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|