2018-11-22 14:50:55 +01:00
|
|
|
# Description: LDAP-like embedded database library
|
|
|
|
# URL: http://ldb.samba.org/
|
2019-04-03 19:03:49 +02:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: tevent tdb popt python3
|
2015-01-27 19:26:41 +09:00
|
|
|
|
|
|
|
name=ldb
|
2019-12-16 11:24:00 +01:00
|
|
|
version=2.0.8
|
2018-11-22 14:50:55 +01:00
|
|
|
release=1
|
|
|
|
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz
|
|
|
|
$name-man-pages.tar.xz)
|
2015-01-27 19:26:41 +09:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2018-11-22 14:50:55 +01:00
|
|
|
|
2015-01-27 19:26:41 +09:00
|
|
|
./configure \
|
2015-01-28 11:03:04 +09:00
|
|
|
--prefix=/usr \
|
2018-11-22 14:50:55 +01:00
|
|
|
--with-modulesdir=/usr/lib \
|
|
|
|
--bundled-libraries=cmocka \
|
|
|
|
--without-ldb-lmdb
|
|
|
|
|
2015-01-27 19:26:41 +09:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2018-11-22 14:50:55 +01:00
|
|
|
|
|
|
|
install -d $PKG/usr/share/man/man{1,3}
|
|
|
|
install -m 0644 $SRC/*.1 $PKG/usr/share/man/man1
|
|
|
|
install -m 0644 $SRC/ldb.3 $PKG/usr/share/man/man3
|
2015-01-27 19:26:41 +09:00
|
|
|
}
|