wok annotate libhtp/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents af793b950cf7
children acb084b6e42c
rev   line source
erjo@11447 1 # SliTaz package receipt.
erjo@11447 2
erjo@11447 3 PACKAGE="libhtp"
Hans-G?nter@21232 4 VERSION="0.5.30"
erjo@11447 5 CATEGORY="system-tools"
erjo@11447 6 SHORT_DESC="Security-aware parser for the HTTP protocol."
erjo@11447 7 MAINTAINER="erjo@slitaz.org"
pascal@15473 8 LICENSE="GPL2"
erjo@11447 9 WEB_SITE="http://www.openinfosecfoundation.org"
Hans-G?nter@21232 10
erjo@11447 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21232 12 WGET_URL="https://github.com/OISF/$PACKAGE/archive/$VERSION.tar.gz"
Hans-G?nter@21232 13
pascal@21235 14 BUILD_DEPENDS="automake libtool"
erjo@11447 15
erjo@11447 16 # Rules to configure and make the package.
erjo@11447 17 compile_rules()
erjo@11447 18 {
Hans-G?nter@21233 19 ./autogen.sh &&
Hans-G?nter@21232 20 ./configure $CONFIGURE_ARGS &&
pascal@21235 21 make &&
Hans-G?nter@21232 22 make install
erjo@11447 23 }
erjo@11447 24
erjo@11447 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11447 26 genpkg_rules()
erjo@11447 27 {
erjo@11447 28 mkdir -p $fs/usr/lib
erjo@11447 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11447 30 }