38 lines
999 B
Text
38 lines
999 B
Text
# Template build file for 'talloc'.
|
|
pkgname=talloc
|
|
version=2.0.8
|
|
revision=5
|
|
hostmakedepends="pkg-config python libxslt docbook-xsl"
|
|
short_desc="Hierarchical pool based memory allocator with destructors"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://talloc.samba.org/"
|
|
license="GPL-3"
|
|
distfiles="http://samba.org/ftp/$pkgname/$pkgname-$version.tar.gz"
|
|
checksum=1ec11e635e0318dbbb014db38ff96e8dba3ce5f614eeb7d993b4a5b71c016783
|
|
|
|
do_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
cp ${FILESDIR}/cross-32bit.answers .
|
|
_args="--cross-compile --hostcc=cc --cross-answers=cross-32bit.answers"
|
|
fi
|
|
./configure --prefix=/usr --disable-python --enable-talloc-compat1 ${_args}
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
}
|
|
|
|
talloc-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/libtalloc.so
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|