blob: 2d780387799c77aae74c68a4e66808af514683d3 (
plain)
1 # Description: Event library based on talloc
2 # URL: http://tevent.samba.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: talloc
5
6 name=tevent
7 version=0.9.39
8 release=1
9 source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 export PYTHON=python2
15
16 ./configure \
17 --bundled-libraries=NONE \
18 --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22 }
|