wok view fping/receipt @ rev 13869

Add njconnect - ncurses utility to connect Jack apps.
author Pawel P. <xj@wp.pl>
date Sun Jan 13 19:44:58 2013 +0000 (2013-01-13)
parents c3019d818a0e
children 8afd61481bd6
line source
1 # SliTaz package receipt.
3 PACKAGE="fping"
4 VERSION="3.2"
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 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS && \
18 make && make DESTDIR=$DESTDIR install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr $fs/etc
25 cp -a $install/usr/sbin $fs/usr
26 cp $stuff/protocols $fs/etc
27 }