mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 03:12:22 +01:00
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
42 lines
921 B
Plaintext
42 lines
921 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
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"
|