opt/ldb/Pkgfile

24 lines
475 B
Plaintext
Raw Normal View History

2018-11-22 14:50:55 +01:00
# Description: LDAP-like embedded database library
2021-03-24 17:18:14 +01:00
# URL: https://ldb.samba.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: tevent tdb popt cmocka python3
2023-09-07 10:40:11 +02:00
# Optional: asciidoc
2015-01-27 11:26:41 +01:00
name=ldb
2023-09-07 10:40:11 +02:00
version=2.8.0
2018-11-22 14:50:55 +01:00
release=1
2023-09-07 10:40:11 +02:00
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz)
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=NONE \
2018-11-22 14:50:55 +01:00
--without-ldb-lmdb
2015-01-27 11:26:41 +01:00
make
make DESTDIR=$PKG install
}