CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
04e61b363b7ac7e85151d4feeab9a349790f1691
[ports/opt-arm64.git] / ldb / Pkgfile
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
6 name=ldb
7 version=2.4.2
8 release=1
9
10 source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz
11 $name-man-pages.tar.xz)
12
13 build() {
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}
26 install -m 0644 $SRC/ldb[!-]*.1 $PKG/usr/share/man/man1
27 install -m 0644 $SRC/ldb.3 $PKG/usr/share/man/man3
28 }