2010-09-11 12:56:59 +02:00
|
|
|
# Description: Hierarchical, reference counted memory pool system with destructors
|
|
|
|
# URL: http://talloc.samba.org/
|
2012-06-20 20:38:46 +02:00
|
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
|
|
# Packager: Tilman Sauerbeck, tilman at crux dot nu
|
2011-01-23 17:44:16 +01:00
|
|
|
# Depends on: python
|
2010-09-11 12:56:59 +02:00
|
|
|
|
|
|
|
name=talloc
|
2016-01-20 23:18:56 +00:00
|
|
|
version=2.1.5
|
2011-11-20 16:04:40 +01:00
|
|
|
release=1
|
2015-02-09 19:56:24 +11:00
|
|
|
source=(http://samba.org/ftp/$name/$name-$version.tar.gz
|
2010-09-11 12:56:59 +02:00
|
|
|
talloc.3)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
2016-01-20 23:18:56 +00:00
|
|
|
./configure --prefix=/usr \
|
2011-01-23 17:44:16 +01:00
|
|
|
--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
|
|
|
|
2016-01-20 23:18:56 +00:00
|
|
|
install -d $PKG/usr/share/man/man3
|
|
|
|
install -m 644 talloc.3 $PKG/usr/share/man/man3
|
2010-09-11 12:56:59 +02:00
|
|
|
}
|