wok view libhtp/receipt @ rev 22189

updated xorg-fonttosfnt (1.0.4 -> 1.0.5)
author Hans-G?nter Theisgen
date Mon Nov 11 09:22:37 2019 +0100 (2019-11-11)
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 }