homebrew-core/Formula/arp-scan.rb
Jack Nagel 63cde03be4 Fix more quoting issues
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15 17:08:57 -05:00

17 lines
429 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