blob: 0fef449b5f3932e29417898306b55078542b025a (
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.29
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="4372c1430a1ecb7ea0adddfdf21c0d55 tevent-0.9.29.tar.gz"
sha256sums="a4f519b0bbb718fe2175bee9011ee4d199675f28c2ef80531be38e7bbaa1c42b tevent-0.9.29.tar.gz"
sha512sums="831289664d3ad22ac3e1a153e0433a583c4a090cd31e25ea7afc5d974c39c1fe5d36784ff5cfffcce344df69a0852a4098834abadfab8d723fe6b6d0d8e91594 tevent-0.9.29.tar.gz"
|