From eff16bfab9a5dfd91483bb3d40cbf299703f9638 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 5 Jan 2012 10:26:05 +0000 Subject: Initial APKBUILD for nfswatch Package description: Nfswatch is a command-line tool for monitoring NFS traffic. Nfswatch can capture and analyze the NFS packets on a particular network interface or on all interfaces. Website: http://nfswatch.sourceforge.net --- testing/nfswatch/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 testing/nfswatch/APKBUILD (limited to 'testing') diff --git a/testing/nfswatch/APKBUILD b/testing/nfswatch/APKBUILD new file mode 100644 index 0000000000..926b4cd279 --- /dev/null +++ b/testing/nfswatch/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter +# Maintainer: Fabian Affolter +pkgname=nfswatch +pkgver=4.99.11 +pkgrel=0 +pkgdesc="An NFS traffic monitoring tool" +url="http://nfswatch.sourceforge.net/" +arch="all" +license="BSD" +depends="" +depends_dev="" +makedepends="libpcap-dev ncurses-dev" +install="" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + bb-gzip.patch" +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p0 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="c1e5f342fab90ef8b9f4ee291cda96cc nfswatch-4.99.11.tar.gz +ca541c462acfcf58cca91fb0e8b63c63 bb-gzip.patch" -- cgit v1.2.3