summaryrefslogtreecommitdiff
path: root/talloc/Pkgfile
blob: 4c0c7dce2d188e983d0b64a3bd1e5bd6d799daac (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 
    5 name=talloc
    6 version=2.0.5
    7 release=1
    8 source=(ftp://ftp.samba.org/pub/$name/$name-$version.tar.gz
    9         talloc.3)
   10 
   11 build() {
   12 	cd $name-$version
   13 
   14 	./configure --prefix=/usr --mandir=/usr/man \
   15 	            --enable-talloc-compat1 --disable-python
   16 
   17 	# Don't depend on xsltproc or docbook.sourceforge.net being available
   18 	cp $SRC/talloc.3 .
   19 	touch talloc.3 talloc.3.html
   20 
   21 	make
   22 	make install DESTDIR=$PKG
   23 
   24 	install -d $PKG/usr/man/man3
   25 	install -m 644 talloc.3 $PKG/usr/man/man3
   26 }

Generated by cgit