From 3f3f3acd64550ce1585eef934c10e9b918894278 Mon Sep 17 00:00:00 2001 From: Steve McMaster Date: Sat, 19 Aug 2017 17:03:07 -0400 Subject: community/libhtp: Move from testing to community --- community/libhtp/APKBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 community/libhtp/APKBUILD (limited to 'community/libhtp/APKBUILD') diff --git a/community/libhtp/APKBUILD b/community/libhtp/APKBUILD new file mode 100644 index 0000000000..173062e21d --- /dev/null +++ b/community/libhtp/APKBUILD @@ -0,0 +1,42 @@ +# Contributor: Steve McMaster +# Maintainer: Steve McMaster +pkgname=libhtp +pkgver=0.5.25 +pkgrel=0 +pkgdesc="HTTP normalizer and parser library" +url="https://github.com/OISF/libhtp" +arch="all" +license="BSD" +# the zlib-dev dependency is not listed in the .pc file but the headers +# needs zlib.h, so we add explicit to depends_dev +depends_dev="zlib-dev" +makedepends="$depends_dev automake autoconf libtool" +subpackages="$pkgname-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/OISF/libhtp/archive/$pkgver.tar.gz +" + +builddir="$srcdir/$pkgname-$pkgver" +build() { + cd "$builddir" + autoreconf -vif + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + || return 1 + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +check() { + cd "$builddir" + make check +} +sha512sums="130e4af4c7b3d949472eb355334cb719d6792b57be41b847ee1aaaaf18aaf678dbef8137adc1567ec09bcef5ca6eb45d113776503173a7225e68a708c750ee21 libhtp-0.5.25.tar.gz" -- cgit v1.2.3