wok view fping/receipt @ rev 15141

blackbox: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 11:37:41 2013 +0000 (2013-08-15)
parents 18a9cd52e9bb
children 3b4e4318134e
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://fping.org/"
10 WGET_URL="${WEB_SITE}dist/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 ./configure \
16 --prefix=/usr \
17 --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS && \
20 make && make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr $fs/etc
27 cp -a $install/usr/sbin $fs/usr
28 cp $stuff/protocols $fs/etc
29 }