aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dnstop.rb
blob: 6dc8efc24d319622f344598bdb0308603068fa28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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-20120611.tar.gz'
  sha1 'a5fb7e9d307488f2f6aaaa0291b9c7c187f68fd9'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    bin.install 'dnstop'
    man8.install 'dnstop.8'
  end

end