blob: 3e7bb5f46b572b90fa32049775fa85b61aae10c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Bibliothèque de gestion d'évènements SaMBa4
# URL: http://tevent.samba.org/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: talloc
# Run on: talloc
name=tevent
version=0.9.14
release=1
source=(http://www.samba.org/ftp/$name/$name-$version.tar.gz)
build() {
cd $name-$version
sed "s|#!/usr/bin/env python|#!/usr/bin/env python2|" -i buildtools/bin/waf
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|