# Contributor: Fabian Affolter # Maintainer: Fabian Affolter pkgname=dnstop pkgver=20121017 pkgrel=0 pkgdesc="A DNS traffic capture utility" url="http://dns.measurement-factory.com/tools/dnstop/" arch="all" license="BSD" depends="" depends_dev="" makedepends="libpcap-dev ncurses-dev" install="" subpackages="$pkgname-doc" source="http://dns.measurement-factory.com/tools/dnstop/src/$pkgname-$pkgver.tar.gz" _builddir="$srcdir"/$pkgname-$pkgver prepare() { local i cd "$_builddir" for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done } build() { cd "$_builddir" ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ || return 1 make || return 1 } package() { cd "$_builddir" mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8 make DESTDIR="$pkgdir" install || return 1 rm -f "$pkgdir"/usr/lib/*.la } md5sums="0407f08e5788b59268048d00cdddd5b6 dnstop-20121017.tar.gz"