blob: 8a443b22298e07e938642cb4f56094c55d103815 (
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.37
8 release=1
9 source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure \
14 --bundled-libraries=NONE \
15 --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|