wok annotate libhtp/receipt @ rev 19934

fix symlinks (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 10:36:22 2017 +0200 (2017-04-28)
parents d70cd76f3c2f
children 6ece78e52e38
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
erjo@11447 13 # Rules to configure and make the package.
erjo@11447 14 compile_rules()
erjo@11447 15 {
erjo@11447 16 cd $src
erjo@11447 17 ./configure $CONFIGURE_ARGS && make && make install
erjo@11447 18 }
erjo@11447 19
erjo@11447 20 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11447 21 genpkg_rules()
erjo@11447 22 {
erjo@11447 23 mkdir -p $fs/usr/lib
erjo@11447 24 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11447 25 }