tdb: remove long_desc.

This commit is contained in:
Juan RP 2014-02-16 12:09:12 +01:00
parent 2d400b3455
commit 3d26317e0d
1 changed files with 3 additions and 14 deletions

View File

@ -1,7 +1,7 @@
# Template build file for 'tdb'.
pkgname=tdb
version=1.2.11
revision=3
revision=4
build_style=gnu-configure
hostmakedepends="pkg-config python libxslt docbook-xsl"
short_desc="Hierarchical pool based memory allocator with destructors"
@ -10,10 +10,6 @@ license="GPL-3"
homepage="http://tdb.samba.org/"
distfiles="http://samba.org/ftp/tdb/tdb-$version.tar.gz"
checksum=f10eae6361b033131d2deebfcccbcaeb3d8006747005f5240d68e8b70632f6c2
long_desc="
This is a simple database API. It is modelled after the structure of GDBM.
TDB features, unlike GDBM, multiple writers support with appropriate locking
and transactions."
do_configure() {
if [ "$CROSS_BUILD" ]; then
@ -23,26 +19,19 @@ do_configure() {
./configure --prefix=/usr --disable-python ${_args}
}
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=${DESTDIR} install
}
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*"
vmove "usr/lib/*.so.*"
}
}