homebrew-core/Formula/dnstop.rb
Brett Koonce e681e6d932 dnstop 20121017
Closes Homebrew/homebrew#15556.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-19 19:03:20 -07:00

15 lines
391 B
Ruby

require 'formula'
class Dnstop < Formula
homepage 'http://dns.measurement-factory.com/tools/dnstop/index.html'
url 'http://dns.measurement-factory.com/tools/dnstop/src/dnstop-20121017.tar.gz'
sha1 '836d9bc118df539b80eb349ca45c946323b13366'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
bin.install 'dnstop'
man8.install 'dnstop.8'
end
end