opt/talloc/Pkgfile
2016-01-20 23:18:56 +00:00

29 lines
692 B
Plaintext

# Description: Hierarchical, reference counted memory pool system with destructors
# URL: http://talloc.samba.org/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: python
name=talloc
version=2.1.5
release=1
source=(http://samba.org/ftp/$name/$name-$version.tar.gz
talloc.3)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-talloc-compat1
# Don't depend on xsltproc or docbook.sourceforge.net being available
cp $SRC/talloc.3 .
touch talloc.3 talloc.3.html
make
make install DESTDIR=$PKG
install -d $PKG/usr/share/man/man3
install -m 644 talloc.3 $PKG/usr/share/man/man3
}