wok view libhtp/receipt @ rev 21937

Up nnn (2.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 07 18:30:01 2019 +0200 (2019-10-07)
parents af793b950cf7
children acb084b6e42c
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 libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh &&
20 ./configure $CONFIGURE_ARGS &&
21 make &&
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 }