wok-next view fping/receipt @ rev 21338

OpenSSL 1.0.2t -> 1.0.2u: overflow bug CVE-2019-1551
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 21 08:55:46 2019 +0000 (2019-12-21)
parents 3b4e4318134e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="fping"
4 VERSION="3.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="ICMP echo with multiple hosts"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="http://fping.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}dist/$TARBALL"
14 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$install install
22 }
24 genpkg_rules() {
25 mkdir -p $fs/usr $fs/etc
26 cp -a $install/usr/sbin $fs/usr
27 cp $stuff/protocols $fs/etc
28 }