opt/ldb/Pkgfile

28 lines
634 B
Plaintext
Raw Normal View History

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 11:26:41 +01:00
name=ldb
2019-07-04 13:13:37 +02:00
version=1.5.5
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 11:26:41 +01:00
build() {
cd $name-$version
2018-11-22 14:50:55 +01:00
2015-01-27 11:26:41 +01:00
./configure \
--prefix=/usr \
2018-11-22 14:50:55 +01:00
--with-modulesdir=/usr/lib \
--bundled-libraries=cmocka \
--without-ldb-lmdb
2015-01-27 11:26:41 +01: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 11:26:41 +01:00
}