mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
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
This commit is contained in:
parent
6272dd28c0
commit
eff16bfab9
41
testing/nfswatch/APKBUILD
Normal file
41
testing/nfswatch/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# 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"
|
||||
Loading…
x
Reference in New Issue
Block a user