summaryrefslogtreecommitdiff
path: root/talloc/Pkgfile
blob: 686490ddf4affff051b3d1ae8cd67fb3ee932ead (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.1.2
    9 release=1
   10 source=(http://samba.org/ftp/$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 }

Generated by cgit