compat-32/talloc-32/Pkgfile
2015-03-15 15:43:47 +11:00

33 lines
715 B
Plaintext

# Description: Hierarchical, reference counted memory pool system with destructors
# URL: http://talloc.samba.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: python-32 talloc
name=talloc-32
version=2.1.2
release=1
source=(http://samba.org/ftp/talloc/talloc-$version.tar.gz
talloc.3)
build() {
cd talloc-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--libdir=/usr/lib32 \
--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
mv $PKG/usr/lib/* $PKG/usr/lib32/
rmdir $PKG/usr/lib
rm -r $PKG/usr/include
rm -rf $PKG/usr/man
}