void-packages/srcpkgs/tdb/template

38 lines
970 B
Text
Raw Normal View History

2010-11-21 15:44:55 +00:00
# Template build file for 'tdb'.
pkgname=tdb
2012-12-04 17:09:54 +00:00
version=1.2.11
2014-02-16 11:09:12 +00:00
revision=4
build_style=gnu-configure
hostmakedepends="pkg-config python libxslt docbook-xsl"
2010-11-21 15:44:55 +00:00
short_desc="Hierarchical pool based memory allocator with destructors"
maintainer="Juan RP <xtraeme@gmail.com>"
2012-01-16 06:44:38 +00:00
license="GPL-3"
2012-10-23 20:58:36 +00:00
homepage="http://tdb.samba.org/"
distfiles="http://samba.org/ftp/tdb/tdb-$version.tar.gz"
2012-12-04 17:09:54 +00:00
checksum=f10eae6361b033131d2deebfcccbcaeb3d8006747005f5240d68e8b70632f6c2
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}
}
tdb-devel_package() {
depends="libtdb-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
2014-02-16 11:09:12 +00:00
vmove "usr/lib/*.so"
}
}
libtdb_package() {
short_desc="Trivial Database - shared library"
pkg_install() {
2014-02-16 11:09:12 +00:00
vmove "usr/lib/*.so.*"
}
}