New formula: dnstop

Closes Homebrew/homebrew#8376.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Anand Buddhdev 2011-10-30 23:01:22 +01:00 committed by Jack Nagel
parent 6da4a951f0
commit 5e85349339
1 changed files with 15 additions and 0 deletions

15
Formula/dnstop.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Dnstop < Formula
url 'http://dns.measurement-factory.com/tools/dnstop/src/dnstop-20110502.tar.gz'
homepage 'http://dns.measurement-factory.com/tools/dnstop/index.html'
md5 '28cb54f3780b27e15df8924235e4e37b'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
bin.install 'dnstop'
man8.install 'dnstop.8'
end
end