wok view fping/receipt @ rev 17809

mate-control-center: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 21 10:25:00 2015 +0100 (2015-03-21)
parents 8afd61481bd6
children 03cab65f327a
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fping.org/"
11 WGET_URL="${WEB_SITE}dist/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS && \
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr $fs/etc
28 cp -a $install/usr/sbin $fs/usr
29 cp $stuff/protocols $fs/etc
30 }