aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dnstop.rb
diff options
context:
space:
mode:
authorBrett Koonce2014-09-27 10:53:59 -0700
committerBrett Koonce2014-09-27 11:36:03 -0700
commita4c48aa6fab44824b57c109218a241d2732f22cd (patch)
treef096f79e1f616202c543ae0b8d4929f426d7bb28 /Library/Formula/dnstop.rb
parent389d1c6921ea849de832471c6aa2271b56494aef (diff)
downloadhomebrew-a4c48aa6fab44824b57c109218a241d2732f22cd.tar.bz2
dnstop 20140915
Diffstat (limited to 'Library/Formula/dnstop.rb')
-rw-r--r--Library/Formula/dnstop.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/dnstop.rb b/Library/Formula/dnstop.rb
index 2716360af..f84313ee4 100644
--- a/Library/Formula/dnstop.rb
+++ b/Library/Formula/dnstop.rb
@@ -1,15 +1,15 @@
-require 'formula'
+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'
+ homepage "http://dns.measurement-factory.com/tools/dnstop/index.html"
+ url "http://dns.measurement-factory.com/tools/dnstop/src/dnstop-20140915.tar.gz"
+ sha1 "af1567d6b53e8be697b884508a2a3a0edbea5e01"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
- bin.install 'dnstop'
- man8.install 'dnstop.8'
+ bin.install "dnstop"
+ man8.install "dnstop.8"
end
end