diff options
Diffstat (limited to 'user/iputils/APKBUILD')
-rw-r--r-- | user/iputils/APKBUILD | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/user/iputils/APKBUILD b/user/iputils/APKBUILD index f3cca0f7e..ed0ac81a3 100644 --- a/user/iputils/APKBUILD +++ b/user/iputils/APKBUILD @@ -1,24 +1,29 @@ # Contributor: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Dan Theisen <djt@hxx.in> pkgname=iputils -pkgver=20190709 +pkgver=20211215 pkgrel=0 pkgdesc="IP Configuration Utilities (and Ping)" url="https://github.com/iputils/iputils/" arch="all" -options="suid" +options="!check suid" # tests require binaries with suid/capabilities license="BSD-3-Clause AND GPL-2.0-or-later" +depends="" makedepends="docbook-xsl docbook-xsl-ns libcap-dev libgcrypt-dev libxslt meson - openssl-dev" -replaces="bbsuid" + openssl-dev iproute2" subpackages="$pkgname-doc $pkgname-lang $pkgname-openrc" -source="$pkgname-$pkgver.tgz::https://github.com/$pkgname/$pkgname/archive/s$pkgver.tar.gz" -builddir="$srcdir/$pkgname-s$pkgver" +source="$pkgname-$pkgver.tgz::https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" build() { # we're waiting for idn support in musl so that we can enable it here # https://wiki.musl-libc.org/functional-differences-from-glibc.html#Name-Resolver/DNS - meson --prefix /usr --buildtype=plain builddir -DUSE_IDN=false + meson --prefix /usr \ + --buildtype=plain \ + -DBUILD_ARPING=true \ + -DUSE_IDN=false \ + -DNO_SETCAP_OR_SUID=false \ + builddir ninja -v -C builddir } @@ -33,4 +38,4 @@ package() { ln -s ping "$pkgdir"/usr/bin/ping6 } -sha512sums="5db18ac49fa46ed810da4d508e78f4baf2d5c07e7f923eb49d005ad8745743d8861e5788b34a7e37fb7261cee7ddfb768b737eee9d200502ea53537142cac6b5 iputils-20190709.tgz" +sha512sums="191062e51f7c8e8b38e3e4a96845adb77cd69f487d548c7cc578fad544443b4bc0dbe965d8f8e6fbda0a2f5b2fe2829789c05f873190c53d773245959298f6e9 iputils-20211215.tgz" |