19 lines
402 B
Plaintext
19 lines
402 B
Plaintext
|
# Description: Event system based on the talloc memory management library
|
||
|
# URL: https://tevent.samba.org
|
||
|
# Packager: milisarge
|
||
|
# Depends on: talloc python
|
||
|
|
||
|
name=tevent
|
||
|
version=0.9.28
|
||
|
release=1
|
||
|
source=(https://www.samba.org/ftp/$name/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--bundled-libraries=NONE \
|
||
|
--builtin-libraries=replace
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|