From 5e85349339845de60505c1d5fea50045988a10b0 Mon Sep 17 00:00:00 2001 From: Anand Buddhdev Date: Sun, 30 Oct 2011 23:01:22 +0100 Subject: [PATCH] New formula: dnstop Closes Homebrew/homebrew#8376. Signed-off-by: Jack Nagel --- Formula/dnstop.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Formula/dnstop.rb diff --git a/Formula/dnstop.rb b/Formula/dnstop.rb new file mode 100644 index 00000000000..6c897873951 --- /dev/null +++ b/Formula/dnstop.rb @@ -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