aboutsummaryrefslogtreecommitdiffstats
path: root/main/ldb/APKBUILD
blob: 5f740e684c2cb535dec6d212169929849617418a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ldb
pkgver=1.3.2
pkgrel=1
pkgdesc="A schema-less, ldap like, API and database"
url="http://ldb.samba.org/"
arch="all"
license="LGPL-3.0-or-later"
makedepends="libtirpc-dev tevent-dev py2-tevent tdb-dev py-tdb talloc-dev
	python2-dev popt-dev cmocka-dev"
subpackages="$pkgname-dev py2-$pkgname:_py2 $pkgname-tools"
source="https://www.samba.org/ftp/pub/ldb/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		--disable-rpath \
		--bundled-libraries=NONE \
		--builtin-libraries=replace \
		--with-modulesdir=/usr/lib/ldb/modules
	make
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

_py2() {
	pkgdesc="Python 2 binding for the ldb library"
	provides="py-ldb=$pkgver-r$pkgrel"  # for backward compatibility
	replaces="py-ldb"  # for backward compatibility

	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/python2* "$subpkgdir"/usr/lib/
	mv "$pkgdir"/usr/lib/libpyldb*.so.* "$subpkgdir"/usr/lib/
}

tools() {
	pkgdesc="Tools to manage LDB files"
	mkdir -p "$subpkgdir"/usr/lib/ldb
	mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
	mv "$pkgdir"/usr/lib/ldb/libldb-cmdline.* "$subpkgdir"/usr/lib/ldb/
}

sha512sums="31b29a2a991038910830cb47b02b7f08e1958638d073d5f1602a2657c4005c7e5f5f2c2f7972eeddef462d8c70aaad7f02ddf901cb50f1b1bbafa0c22498973d  ldb-1.3.2.tar.gz"