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
parent
b38d08daa5
commit
c0c42781b2
|
@ -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
|
Loading…
Reference in New Issue