wok-next annotate httping/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 6ba33cccff9d |
children |
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" |
al@21020 | 6 SHORT_DESC="Like 'ping' but for http-requests" |
paul@17688 | 7 MAINTAINER="paul@slitaz.org" |
paul@17688 | 8 LICENSE="GPL2" |
al@21020 | 9 WEB_SITE="https://www.vanheusden.com/httping/" |
al@21020 | 10 |
paul@17688 | 11 TARBALL="$PACKAGE-$VERSION.tgz" |
paul@17688 | 12 WGET_URL="http://www.vanheusden.com/httping/$TARBALL" |
paul@17688 | 13 |
al@21020 | 14 BUILD_DEPENDS="ncurses-dev fftw-dev gettext-dev openssl-dev" |
paul@17688 | 15 |
al@21020 | 16 compile_rules() { |
paul@17688 | 17 #--with-tfo force enable tcp fast open |
pascal@17690 | 18 ./configure \ |
pascal@17689 | 19 --with-ncurses \ |
pascal@17689 | 20 --with-openssl \ |
pascal@17690 | 21 --with-fftw3 && |
pascal@17689 | 22 make && |
al@21020 | 23 make DESTDIR=$install install |
paul@17688 | 24 } |
paul@17688 | 25 |
al@21020 | 26 genpkg_rules() { |
paul@17688 | 27 mkdir -p $fs/usr |
paul@17688 | 28 cp -a $install/usr/bin $fs/usr |
paul@17688 | 29 cp -a $install/usr/share/ $fs/usr |
paul@17688 | 30 rm -r $fs/usr/share/man |
al@21020 | 31 DEPENDS="ncurses fftw openssl" |
paul@17688 | 32 } |