blob: 9d7941f91c431e111223653c5d8021fd7ca38fd6 (
plain)
1 # Description: Hierarchical, reference counted memory pool system with destructors
2 # URL: http://talloc.samba.org/
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: python
6
7 name=talloc
8 version=2.0.7
9 release=1
10 source=(ftp://ftp.samba.org/pub/$name/$name-$version.tar.gz
11 talloc.3)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=/usr --mandir=/usr/man \
17 --enable-talloc-compat1
18
19 # Don't depend on xsltproc or docbook.sourceforge.net being available
20 cp $SRC/talloc.3 .
21 touch talloc.3 talloc.3.html
22
23 make
24 make install DESTDIR=$PKG
25
26 install -d $PKG/usr/man/man3
27 install -m 644 talloc.3 $PKG/usr/man/man3
28 }
|