aboutsummaryrefslogtreecommitdiffstats
path: root/main/ldb/APKBUILD
blob: a8fc002aba7bef9e276774fd5462da52b600a581 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ldb
pkgver=1.3.5
pkgrel=0
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 py2-tdb talloc-dev
	python2-dev python3-dev popt-dev cmocka-dev"
subpackages="$pkgname-dev py2-$pkgname:_py2 py3-$pkgname:_py3 $pkgname-tools"
source="https://www.samba.org/ftp/pub/ldb/$pkgname-$pkgver.tar.gz
	disable-python-tests.patch"
builddir="$srcdir/$pkgname-$pkgver"
_waf="python "$builddir"/buildtools/bin/waf"

build() {
	cd "$builddir"
	# As of 1.3.5, test suite fails when compiler flags set. Remove if no longer needed.
	unset CFLAGS CXXFLAGS CPPFLAGS
	$_waf configure \
		--prefix=/usr \
		--disable-rpath \
		--disable-rpath-install \
		--builtin-libraries=replace \
		--bundled-libraries=NONE \
		--with-modulesdir=/usr/lib/ldb/modules \
		--extra-python=/usr/bin/python3
	$_waf build
}

check() {
	cd "$builddir"
	$_waf test
}

package() {
	cd "$builddir"
	DESTDIR="$pkgdir" $_waf 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-util.so.* "$subpkgdir"/usr/lib/
}

_py3() {
	pkgdesc="Python 3 binding for the ldb library"

	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/python3* "$subpkgdir"/usr/lib/
	mv "$pkgdir"/usr/lib/libpyldb-util.cpython* "$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="acf0854d4b1e1248296780574b20efefb153602396177f0a27f531118e843da5feacee0b755486825edc9c9e2a0b8bc6a06a774c608fdbf75e4c127c592c6859  ldb-1.3.5.tar.gz
4b65362539ad169997b437b4b3444693ff318892931a827e220583e6c5114472a2029e90681be942c3a3ec76db82dedc23300d82e094c8fa8e9f24814756f8f9  disable-python-tests.patch"