blob: 43938d594fc1b3171d73180cb6801295fb592c75 (
plain)
1 # Description: Event library based on talloc
2 # URL: http://tevent.samba.org/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on: talloc
5 # Optional: python
6
7 name=tevent
8 version=0.9.24
9 release=1
10 source=(http://www.samba.org/ftp/$name/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure \
15 --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 }
|