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