wok-6.x rev 21232
updated libhtp and libhtp-dev (0.2.6 -> 0.5.30)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 11 13:28:24 2019 +0100 (2019-04-11) |
parents | eb4c6cf9f3a5 |
children | af793b950cf7 |
files | libhtp-dev/receipt libhtp/receipt |
line diff
1.1 --- a/libhtp-dev/receipt Thu Apr 11 10:39:50 2019 +0200 1.2 +++ b/libhtp-dev/receipt Thu Apr 11 13:28:24 2019 +0100 1.3 @@ -1,21 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libhtp-dev" 1.7 -VERSION="0.2.6" 1.8 +VERSION="0.5.30" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="SLibhtp dev files." 1.11 +SHORT_DESC="Libhtp, development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="GPL2" 1.14 WEB_SITE="http://www.openinfosecfoundation.org" 1.15 + 1.16 WANTED="libhtp" 1.17 - 1.18 DEPENDS="libhtp pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/include $fs/usr 1.27 + 1.28 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.29 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.30 + cp -a $install/usr/include $fs/usr 1.31 }
2.1 --- a/libhtp/receipt Thu Apr 11 10:39:50 2019 +0200 2.2 +++ b/libhtp/receipt Thu Apr 11 13:28:24 2019 +0100 2.3 @@ -1,20 +1,25 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libhtp" 2.7 -VERSION="0.2.6" 2.8 +VERSION="0.5.30" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Security-aware parser for the HTTP protocol." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL2" 2.13 WEB_SITE="http://www.openinfosecfoundation.org" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="http://www.openinfosecfoundation.org/download/$TARBALL" 2.17 +WGET_URL="https://github.com/OISF/$PACKAGE/archive/$VERSION.tar.gz" 2.18 + 2.19 +BUILD_DEPENDS="automake" 2.20 2.21 # Rules to configure and make the package. 2.22 compile_rules() 2.23 { 2.24 - cd $src 2.25 - ./configure $CONFIGURE_ARGS && make && make install 2.26 + .autogen.sh && 2.27 + ./configure $CONFIGURE_ARGS && 2.28 + make -j 1 && 2.29 + make install 2.30 } 2.31 2.32 # Rules to gen a SliTaz package suitable for Tazpkg.