blob: 0c2f2600d76f598af54ec5422f6a2607c851d77e (
plain)
1 # Description: Hierarchical, reference counted memory pool system with destructors
2 # URL: https://talloc.samba.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: python
5
6 name=talloc
7 version=2.1.16
8 release=1
9 source=(https://samba.org/ftp/$name/$name-$version.tar.gz
10 $name-man-pages.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 export PYTHON=python2
16
17 ./configure \
18 --prefix=/usr \
19 --bundled-libraries=NONE \
20 --enable-talloc-compat1
21
22 make
23 make DESTDIR=$PKG install
24
25 install -d $PKG/usr/share/man/man3
26 install -m 0644 $SRC/*.3 $PKG/usr/share/man/man3
27 }
|