arp-scan 1.8

arp-scan is a command-line tool that uses the ARP protocol to discover
and fingerprint IP hosts on the local network. It is available under the
GPL licence (GPLv3).

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
David Wooldridge (z0mbix) 2011-12-08 17:37:14 +00:00 committed by Adam Vandenberg
parent b38d08daa5
commit c0c42781b2
1 changed files with 17 additions and 0 deletions

17
Formula/arp-scan.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class ArpScan < Formula
homepage 'http://www.nta-monitor.com/tools/arp-scan/'
url 'http://www.nta-monitor.com/tools/arp-scan/download/arp-scan-1.8.tar.gz'
md5 'be8826574ec566217eb7ca040fe472f9'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/arp-scan -V"
end
end