diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2011-08-15 21:23:21 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-12-03 14:49:17 -0600 |
commit | b48899a5d132430ac173c196610467887393e9a2 (patch) | |
tree | a973baad7ca92daf94534443cab9fefb2f1f9f6c /testing | |
parent | ce172139d2e379d3b8dff5703eebc64783465689 (diff) | |
download | aports-b48899a5d132430ac173c196610467887393e9a2.tar.bz2 aports-b48899a5d132430ac173c196610467887393e9a2.tar.xz |
Initial APKBUILD for httpry
Package description:
httpry is a specialized packet sniffer designed for displaying
and logging HTTP traffic. It is not intended to perform analysis
itself, but to capture, parse, and log the traffic for later
analysis. It can be run in real-time displaying the traffic as
it is parsed, or as a daemon process that logs to an output file.
It is written to be as lightweight and flexible as possible, so
that it can be easily adaptable to different applications.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/httpry/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/httpry/APKBUILD b/testing/httpry/APKBUILD new file mode 100644 index 0000000000..9a3c419338 --- /dev/null +++ b/testing/httpry/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=httpry +pkgver=0.1.6 +pkgrel=0 +pkgdesc="A packet sniffer designed for HTTP traffic" +url="http://dumpsterventures.com/jason/httpry/" +arch="all" +license="GPL2" +depends="" +depends_dev="" +makedepends="libpcap-dev" +install="" +subpackages="$pkgname-doc" +source="http://dumpsterventures.com/jason/httpry/$pkgname-$pkgver.tar.gz" +_builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + install -m755 -D "$_builddir"/$pkgname "$pkgdir"/usr/sbin/$pkgname + install -m644 -D "$_builddir"/$pkgname.1 "$pkgdir"/usr/share/man/man1/$pkgname.1 +} + +md5sums="ef016e3e0e950993b7c9811b6859ec4d httpry-0.1.6.tar.gz" |