diff options
| author | David Wooldridge (z0mbix) | 2011-12-08 17:37:14 +0000 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-02-19 11:09:28 -0800 | 
| commit | 7627506144e07b5fc4fd8c024224c2d97f3ac5a6 (patch) | |
| tree | ef221e1c4d4d3d628888deb51fea4fcc7241ea25 | |
| parent | 6d0c4e2370625026d796b72123e8061e00c004ae (diff) | |
| download | homebrew-7627506144e07b5fc4fd8c024224c2d97f3ac5a6.tar.bz2 | |
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>
| -rw-r--r-- | Library/Formula/arp-scan.rb | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/Library/Formula/arp-scan.rb b/Library/Formula/arp-scan.rb new file mode 100644 index 000000000..c0a951502 --- /dev/null +++ b/Library/Formula/arp-scan.rb @@ -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 | 
