blob: 173c2c42ae00af70b921743d156cc07ab655b737 (
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.22
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 }
|