wok view libhtp/receipt @ rev 23279

updated pciids (20150414 -> 20200329)
author Hans-G?nter Theisgen
date Sun Mar 29 09:58:57 2020 +0100 (2020-03-29)
parents 29f98d2a8eea
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libhtp"
4 VERSION="0.5.32"
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 }