blob: 2716360af3233aad76213dfb73422a70a0a61781 (
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-20121017.tar.gz'
sha1 '836d9bc118df539b80eb349ca45c946323b13366'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
bin.install 'dnstop'
man8.install 'dnstop.8'
end
end
|