diff options
-rw-r--r-- | main/talloc/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/talloc/APKBUILD b/main/talloc/APKBUILD index 9c90711880..fd0c3ad2d9 100644 --- a/main/talloc/APKBUILD +++ b/main/talloc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=talloc pkgver=2.1.14 -pkgrel=0 +pkgrel=1 pkgdesc="Memory pool management library" url="https://talloc.samba.org" arch="all" @@ -32,6 +32,9 @@ build() { --without-gettext \ --extra-python=/usr/bin/python3 make + + # talloc's Waf setup doesn't build static libraries, so we do it manually + ar qf libtalloc.a bin/default/talloc_*.o } check() { @@ -42,6 +45,7 @@ check() { package() { cd "$builddir" make DESTDIR="$pkgdir" install + install -Dm644 libtalloc.a "$pkgdir"/usr/lib/libtalloc.a } _py2() { |