wok-next view fping/receipt @ rev 21720

qt4: replaced libIDL by libidl
author Hans-G?nter Theisgen
date Wed Aug 05 09:22:38 2020 +0100 (2020-08-05)
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 }