void-packages/srcpkgs/flac/template

53 lines
1.5 KiB
Plaintext

# Template file for 'flac'
pkgname=flac
version=1.3.0
revision=1
build_style=gnu-configure
configure_args="--disable-rpath --disable-doxygen-docs --disable-xmms-plugin"
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
hostmakedepends="nasm"
fi
makedepends="libogg-devel"
short_desc="Free Lossless Audio Codec"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://flac.sourceforge.net/"
license="BSD, GPL"
distfiles="http://downloads.xiph.org/releases/flac/flac-${version}.tar.xz"
checksum=fa2d64aac1f77e31dfbb270aeb08f5b32e27036a52ad15e69a77e309528010dc
long_desc="
FLAC stands for Free Lossless Audio Codec. Grossly oversimplified, FLAC is
similar to MP3, but lossless. The FLAC project consists of:
* the stream format
* libFLAC, which implements reference encoders and decoders
* flac, a command-line wrapper around libFLAC to encode and decode .flac
files
* input plugins for various music players (Winamp, XMMS, and more in the
works)"
if [ "$CROSS_BUILD" ]; then
hostmakedepends="automake pkg-config libtool"
pre_configure() {
autoreconf -fi
}
configure_args+=" --with-ogg=$XBPS_CROSS_BASE"
fi
libflac_package() {
short_desc+=" - shared libraries"
pkg_install() {
vmove "usr/lib/*.so*"
}
}
libflac-devel_package() {
depends="libstdc++-devel libogg-devel libflac>=${version}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/share/aclocal
vmove usr/share/doc
}
}