wok view fping/receipt @ rev 22916

claws-mail: added build dependency libgnutls
author Hans-G?nter Theisgen
date Mon Feb 24 13:45:59 2020 +0100 (2020-02-24)
parents 3b4e4318134e
children 2a0479881723
line source
1 # SliTaz package receipt.
3 PACKAGE="fping"
4 VERSION="4.2"
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 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS 2>&1 | sed 's|: No such|: no such|' &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 mkdir -p $fs/etc
32 cp -a $install/usr/sbin $fs/usr
33 cp $stuff/protocols $fs/etc
34 }