void-packages/srcpkgs/speex/template

42 lines
1.1 KiB
Plaintext

# Template file for 'speex'.
pkgname=speex
version=1.2rc1
revision=7
build_style=gnu-configure
configure_args="--disable-static"
hostmakedepends="pkg-config"
makedepends="libogg-devel"
short_desc="A free codec for free speech"
homepage="http://www.speex.org"
license="BSD"
maintainer="Juan RP <xtraeme@gmail.com>"
distfiles="http://downloads.xiph.org/releases/speex/speex-$version.tar.gz"
checksum=342f30dc57bd4a6dad41398365baaa690429660b10d866b7d508e8f1179cb7a6
long_desc="
Speex is an audio codec especially designed for compressing voice at low
bit-rates for applications such as voice over IP (VoIP). In some senses, it
is meant to be complementary to the Vorbis codec which places a greater
emphasis on high-quality music reproduction."
if [ "$CROSS_BUILD" ]; then
configure_args+=" --with-ogg=$XBPS_CROSS_BASE"
fi
libspeex_package() {
short_desc+=" - shared libraries"
pkg_install() {
vmove "usr/lib/*.so*"
}
}
speex-devel_package() {
depends="libspeex-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/share/doc
vmove usr/share/aclocal
}
}