blob: 5e7561177900ca9aa41a2a1ce45142b240b52d62 (
plain)
1 # Description: Monitors MAC Adresses on your network.
2 # URL: http://freequaos.host.sk/arpwatch/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5 #
6 # Depends on: libpcap
7
8 name=arpwatch
9 version=1.7
10 release=1
11 source=(http://64.251.30.248/mirror_t2/8.0/a/$name-NG$version.tar.bz2)
12
13 build() {
14 cd $name-NG$version
15 ./configure --prefix=/usr
16 install -d -m 0755 $PKG/usr/{man/man8,sbin}
17 make && make DESTDIR=$PKG install
18 install -d -m 0755 $PKG/usr/sbin
19 }
|