opt/talloc/Pkgfile

28 lines
652 B
Plaintext
Raw Normal View History

2010-09-11 12:56:59 +02:00
# Description: Hierarchical, reference counted memory pool system with destructors
# URL: http://talloc.samba.org/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: python
2010-09-11 12:56:59 +02:00
name=talloc
2011-01-23 15:20:22 +01:00
version=2.0.5
release=2
2010-09-11 12:56:59 +02:00
source=(ftp://ftp.samba.org/pub/$name/$name-$version.tar.gz
talloc.3)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man \
--enable-talloc-compat1
2010-09-11 12:56:59 +02:00
# 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
2011-01-23 15:20:22 +01:00
install -d $PKG/usr/man/man3
install -m 644 talloc.3 $PKG/usr/man/man3
2010-09-11 12:56:59 +02:00
}