24 lines
557 B
Plaintext
24 lines
557 B
Plaintext
# Description: Hierarchical, reference counted memory pool system with destructors
|
|
# URL: http://talloc.samba.org/
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
|
|
name=talloc
|
|
version=2.0.1
|
|
release=1
|
|
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
|
|
|
|
# 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
|
|
}
|