wok view libhtp/receipt @ rev 21233

updated libhtp and libhtp-dev again (0.2.6 -> 0.5.30)
author Hans-G?nter Theisgen
date Thu Apr 11 13:40:55 2019 +0100 (2019-04-11)
parents 6ece78e52e38
children 29f98d2a8eea
line source
1 # SliTaz package receipt.
3 PACKAGE="libhtp"
4 VERSION="0.5.30"
5 CATEGORY="system-tools"
6 SHORT_DESC="Security-aware parser for the HTTP protocol."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.openinfosecfoundation.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/OISF/$PACKAGE/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh &&
20 ./configure $CONFIGURE_ARGS &&
21 make -j 1 &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }