Date: Saturday, November 26, 2022 @ 18:19:38
Author: tpowa
Revision: 462615
archrelease: copy trunk to testing-x86_64
Added:
iputils/repos/testing-x86_64/
iputils/repos/testing-x86_64/PKGBUILD
(from rev 462614, iputils/trunk/PKGBUILD)
iputils/repos/testing-x86_64/keys/
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: iputils/repos/testing-x86_64/PKGBUILD (from rev 462614,
iputils/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-11-26 18:19:38 UTC (rev 462615)
@@ -0,0 +1,35 @@
+# Maintainer: Stéphane Gaudreault <[email protected]>
+# Maintainer: Tobias Powalowski <[email protected]>
+# Contributor: Aaron Griffin <[email protected]>
+
+pkgname=iputils
+# Commit date + git rev-parse --short origin/master
+_rev=23c3782a
+pkgver=20221126
+pkgrel=1
+pkgdesc="Network monitoring tools, including ping"
+arch=('x86_64')
+license=('GPL')
+url="http://www.skbuff.net/iputils/"
+depends=('libcap' 'libidn2')
+makedepends=('perl-sgmls' 'git' 'docbook-xsl' 'meson' 'systemd' 'iproute')
+conflicts=('netkit-base' 'arping')
+replaces=('netkit-base')
+source=("git+https://github.com/iputils/iputils.git#tag=${pkgver}?signed")
+validpgpkeys=('2016FEA4858B1C36B32E833AC0DEC2EE72F33A5F') # Petr Vorel
+options=(debug)
+sha256sums=('SKIP')
+
+build() {
+ mkdir -p build
+ cd build
+
+ arch-meson ../$pkgname
+ ninja
+}
+
+package() {
+ cd build
+
+ DESTDIR="$pkgdir" ninja install
+}