wok annotate httping/receipt @ rev 21145

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 28 14:01:40 2019 +0100 (2019-03-28)
parents e302f073e59f
children af8d823a3077
rev   line source
paul@17688 1 # SliTaz package receipt.
paul@17688 2
paul@17688 3 PACKAGE="httping"
paul@19471 4 VERSION="2.5"
paul@17688 5 CATEGORY="network"
paul@17688 6 SHORT_DESC="Httping is like 'ping' but for http-requests."
paul@17688 7 MAINTAINER="paul@slitaz.org"
paul@17688 8 LICENSE="GPL2"
paul@17688 9 WEB_SITE="http://www.vanheusden.com/httping/"
paul@17688 10 TARBALL="$PACKAGE-$VERSION.tgz"
paul@17688 11 WGET_URL="http://www.vanheusden.com/httping/$TARBALL"
paul@17688 12
paul@17688 13 DEPENDS="ncurses fftw openssl"
paul@17688 14 BUILD_DEPENDS="ncurses-dev fftw-dev gettext openssl-dev"
paul@17688 15
paul@17688 16 # Rules to configure and make the package.
paul@17688 17 compile_rules()
paul@17688 18 {
paul@17688 19 #--with-tfo force enable tcp fast open
pascal@17690 20 ./configure \
pascal@17689 21 --with-ncurses \
pascal@17689 22 --with-openssl \
pascal@17690 23 --with-fftw3 &&
pascal@17689 24 make &&
paul@17688 25 make DESTDIR=$DESTDIR install
paul@17688 26 }
paul@17688 27
paul@17688 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17688 29 genpkg_rules()
paul@17688 30 {
paul@17688 31 mkdir -p $fs/usr
paul@17688 32 cp -a $install/usr/bin $fs/usr
paul@17688 33 cp -a $install/usr/share/ $fs/usr
paul@17688 34 rm -r $fs/usr/share/man
paul@17688 35 }