37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'tdb'
|
|
pkgname=tdb
|
|
version=1.3.16
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config python libxslt docbook-xsl"
|
|
short_desc="A Trivial Database similar to GDBM but allows simultaneous commits"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://tdb.samba.org/"
|
|
distfiles="http://samba.org/ftp/tdb/tdb-${version}.tar.gz"
|
|
checksum=6a3fc2616567f23993984ada3cea97d953a27669ffd1bfbbe961f26e0cf96cc5
|
|
|
|
do_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
cp ${FILESDIR}/cross-32bit.answers .
|
|
sed -i "s,@@XBPS_TARGET_MACHINE@@,$XBPS_TARGET_MACHINE,g" 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
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
libtdb_package() {
|
|
short_desc="Trivial Database - shared library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|