forked from ports/compat-32
32 lines
697 B
Plaintext
32 lines
697 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.1
|
|
release=1
|
|
source=(ftp://ftp.samba.org/pub/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
|
|
}
|