void-packages/srcpkgs/talloc/template
2017-09-11 15:00:00 +02:00

32 lines
915 B
Bash

# Template build file for 'talloc'.
pkgname=talloc
version=2.1.10
revision=1
build_style=configure
hostmakedepends="pkg-config python libxslt docbook-xsl"
short_desc="Hierarchical pool based memory allocator with destructors"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://talloc.samba.org/"
license="GPL-3"
distfiles="http://samba.org/ftp/$pkgname/$pkgname-$version.tar.gz"
checksum=c985e94bebd6ec2f6af3d95dcc3fcb192a2ddb7781a021d70ee899e26221f619
do_configure() {
if [ "$CROSS_BUILD" ]; then
cp ${FILESDIR}/cross-32bit.answers .
_args="--cross-compile --hostcc=cc --cross-answers=cross-32bit.answers"
fi
./configure --prefix=/usr --disable-python ${_args}
}
talloc-devel_package() {
depends="${sourcepkg}-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/libtalloc.so
vmove usr/share/man/man3
}
}