21 lines
384 B
Plaintext
21 lines
384 B
Plaintext
# Description: Event library based on talloc
|
|
# URL: https://tevent.samba.org/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: cmocka talloc
|
|
|
|
name=tevent
|
|
version=0.16.1
|
|
release=1
|
|
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--bundled-libraries=NONE
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|