mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 23:51:58 +01:00
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
# Contributor:
|
|
# Maintainer:
|
|
pkgname=talloc
|
|
pkgver=2.3.2
|
|
pkgrel=1
|
|
pkgdesc="Memory pool management library"
|
|
url="https://talloc.samba.org"
|
|
arch="all"
|
|
license="LGPL-3.0-or-later"
|
|
replaces="samba-common"
|
|
makedepends="docbook-xsl libxslt python3-dev"
|
|
subpackages="$pkgname-static $pkgname-dev py3-$pkgname:_py3 $pkgname-doc"
|
|
source="https://samba.org/ftp/talloc/talloc-$pkgver.tar.gz
|
|
always-libs.patch
|
|
"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--bundled-libraries=NONE \
|
|
--builtin-libraries=replace \
|
|
--disable-rpath \
|
|
--disable-rpath-install \
|
|
--without-gettext
|
|
make
|
|
|
|
# talloc's Waf setup doesn't build static libraries, so we do it manually
|
|
ar qf libtalloc.a bin/default/talloc.c*.o
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 libtalloc.a "$pkgdir"/usr/lib/libtalloc.a
|
|
}
|
|
|
|
_py3() {
|
|
pkgdesc="Python 3 binding for libtalloc"
|
|
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/libpytalloc-util.cpython* \
|
|
"$pkgdir"/usr/lib/python3* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="c851a6f43025720453a3bff8734bfcfff0e29fb7cf2ffcc6c03b6ab8589098daf01d668deec61aa2f238d4df3eb3c47bd080e26eec760cf04a70e1afcad5c5e1 talloc-2.3.2.tar.gz
|
|
66d06f735fe591f3a888ced25c4c5a0068402001736ce52443d0670d42bf7144c7f69ff9c6299ecf4d9001f23c68403953c4bdc7325f4d094d304e4215ff90b1 always-libs.patch"
|