45 lines
1.2 KiB
Text
45 lines
1.2 KiB
Text
# Template file for 'wavpack'
|
|
pkgname=wavpack
|
|
version=4.70.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="An audio codec (lossy and lossless)"
|
|
homepage="http://www.wavpack.com/"
|
|
license="BSD"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
distfiles="http://www.wavpack.com/${pkgname}-${version}.tar.bz2"
|
|
checksum=2cade379b0aba99fbc4e442ccc6dac6c609f6212e46516a083e24c8c364430a4
|
|
long_desc="
|
|
WavPack is a completely open audio compression format providing lossless,
|
|
high-quality lossy, and a unique hybrid compression mode. Although the
|
|
technology is loosely based on previous versions of WavPack, the new version
|
|
4 format has been designed from the ground up to offer unparalleled
|
|
performance and functionality."
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
configure_args="--enable-mmx"
|
|
fi
|
|
|
|
libwavpack_package() {
|
|
short_desc+=" - shared library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
wavpack-devel_package() {
|
|
depends="libwavpack>=${version}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
wavpack_package() {
|
|
pkg_install() {
|
|
vmove all
|
|
}
|
|
}
|