opt/tdb/Pkgfile

22 lines
617 B
Plaintext

# Description: Trivial DataBase similar gdbm
# URL: http://tdb.samba.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: python
name=tdb
version=1.3.0
release=2
source=(http://www.samba.org/ftp/$name/$name-$version.tar.gz
$name-man-$version.tar.xz
0001-tdb-include-include-stdbool.h-in-tdb.h.patch)
build () {
cd $name-$version
patch -p3 -i $SRC/0001-tdb-include-include-stdbool.h-in-tdb.h.patch
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
install -d $PKG/usr/man/man8
install -m 0644 man/*.8 $PKG/usr/man/man8
}