homebrew-core/Formula/arp-scan.rb
David Wooldridge (z0mbix) c0c42781b2 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>
2012-02-19 11:09:28 -08:00

17 lines
426 B
Ruby

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