aboutsummaryrefslogtreecommitdiffstats
path: root/main/tevent/APKBUILD
blob: 08c8b86c2dcabed131f89c35459009419766eccd (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=tevent
pkgver=0.9.26
pkgrel=0
pkgdesc="The tevent library"
url="http://tevent.samba.org/"
arch="all"
license="LGPLv3+"
depends=""
depends_dev=""
makedepends="$depends_dev python-dev talloc-dev"
replaces="samba"
install=""
subpackages="$pkgname-dev py-$pkgname:_py"
source="http://samba.org/ftp/tevent/tevent-$pkgver.tar.gz
	"

_builddir="$srcdir"/tevent-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

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 \
		--without-gettext \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
}

_py() {
	pkgdesc="Python binding for the tevent library"
	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}

md5sums="22c372f3d936d751271f588ab71f829b  tevent-0.9.26.tar.gz"
sha256sums="262c14d78ede13f2c4fc5e61485ae7250a201782d94735a1d8412652453370bd  tevent-0.9.26.tar.gz"
sha512sums="cc841e4267cdda52d4e236040a82852a29a29427d7d374170cc74b4ff8ec0652f521580a1f69a9b4f2a66d8b2a6e3fcd34f21b2e94d0512dae848d271c090ec1  tevent-0.9.26.tar.gz"