CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
ldb: updated to 2.5.1
[ports/opt-arm64.git] / ldb / Pkgfile
CommitLineData
6d0905f7
VM
1# Description: LDAP-like embedded database library
2# URL: http://ldb.samba.org/
3# Maintainer: Juergen Daubert, jue at crux dot nu
4# Depends on: tevent tdb popt python3
5
6name=ldb
d3739593 7version=2.5.1
6d0905f7 8release=1
7f0d1440 9
6d0905f7
VM
10source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz
11 $name-man-pages.tar.xz)
12
13build() {
14 cd $name-$version
15
16 ./configure \
17 --prefix=/usr \
18 --with-modulesdir=/usr/lib \
19 --bundled-libraries=cmocka \
20 --without-ldb-lmdb
21
22 make
23 make DESTDIR=$PKG install
24
25 install -d $PKG/usr/share/man/man{1,3}
0cb19ecf 26 install -m 0644 $SRC/ldb[!-]*.1 $PKG/usr/share/man/man1
6d0905f7
VM
27 install -m 0644 $SRC/ldb.3 $PKG/usr/share/man/man3
28}