blob: 64254a5440cbe0bfead3611ea82e19893154dec0 (
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: python3
5
6 name=talloc
7 version=2.3.1
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 ./configure \
16 --prefix=/usr \
17 --bundled-libraries=NONE \
18 --enable-talloc-compat1
19
20 make
21 make DESTDIR=$PKG install
22
23 install -d $PKG/usr/share/man/man3
24 install -m 0644 $SRC/*.3 $PKG/usr/share/man/man3
25 }
|