mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 23:11:36 +01:00
29 lines
684 B
Plaintext
29 lines
684 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fping
|
|
pkgver=5.0
|
|
pkgrel=0
|
|
pkgdesc="A utility to ping multiple hosts at once"
|
|
url="https://fping.org/"
|
|
arch="all"
|
|
license="MIT"
|
|
subpackages="$pkgname-doc"
|
|
source="https://fping.org/dist/fping-$pkgver.tar.gz"
|
|
options="suid !check" # No testsuite
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--enable-ipv6
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make install DESTDIR="$pkgdir"
|
|
chmod 4755 "$pkgdir"/usr/sbin/fping*
|
|
}
|
|
|
|
sha512sums="c843f7bb7c4e3289c4dd9eb8ae2ab93a363316c0000aac9187f79580a3d2505df179f2e0ae9e0a791c74bfc9e17c476874f8e122dfa6ad74930498c4e02d0de3 fping-5.0.tar.gz"
|