wok-next annotate libhtp/receipt @ rev 20109

Add some bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 29 23:24:57 2017 +0100 (2017-10-29)
parents 8f447cf2eee5
children 4396aed7eb01
rev   line source
erjo@11447 1 # SliTaz package receipt.
erjo@11447 2
erjo@11447 3 PACKAGE="libhtp"
erjo@11447 4 VERSION="0.2.6"
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"
erjo@11447 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11447 11 WGET_URL="http://www.openinfosecfoundation.org/download/$TARBALL"
erjo@11447 12
pascal@20109 13 BUILD_DEPENDS="zlib-dev"
pascal@20109 14
erjo@11447 15 # Rules to configure and make the package.
erjo@11447 16 compile_rules()
erjo@11447 17 {
erjo@11447 18 cd $src
erjo@11447 19 ./configure $CONFIGURE_ARGS && make && make install
erjo@11447 20 }
erjo@11447 21
erjo@11447 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11447 23 genpkg_rules()
erjo@11447 24 {
erjo@11447 25 mkdir -p $fs/usr/lib
erjo@11447 26 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11447 27 }