mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 02:32:25 +01:00
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.
30 lines
787 B
Plaintext
30 lines
787 B
Plaintext
# 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"
|