2012-11-21 11:12:43 -06:00
|
|
|
# Description: Hierarchical, reference counted memory pool system with destructors
|
|
|
|
# URL: http://talloc.samba.org/
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
# Depends on: python-32 talloc
|
|
|
|
|
|
|
|
name=talloc-32
|
2016-09-04 18:00:39 +10:00
|
|
|
version=2.1.8
|
2013-01-22 12:52:42 +11:00
|
|
|
release=1
|
2016-09-04 18:00:39 +10:00
|
|
|
source=(http://samba.org/ftp/talloc/talloc-$version.tar.gz)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd talloc-$version
|
|
|
|
|
2016-09-04 18:00:39 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2012-11-21 11:12:43 -06:00
|
|
|
--libdir=/usr/lib32 \
|
2016-09-04 18:00:39 +10:00
|
|
|
--bundled-libraries=NONE \
|
2012-11-21 11:12:43 -06:00
|
|
|
--enable-talloc-compat1
|
|
|
|
|
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
|
|
|
mv $PKG/usr/lib/* $PKG/usr/lib32/
|
|
|
|
rmdir $PKG/usr/lib
|
|
|
|
|
2014-06-22 16:02:00 +10:00
|
|
|
rm -r $PKG/usr/include
|
2016-09-08 11:01:17 +10:00
|
|
|
|
|
|
|
# remove man pages when docbook-xsl is installed
|
|
|
|
rm -rf $PKG/usr/share/man
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|