blob: f3b79828e45b9fe3badf10e93d247902b01709dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
require 'formula'
class Web100clt < Formula
homepage 'http://www.internet2.edu/performance/ndt/'
url 'http://software.internet2.edu/sources/ndt/ndt-3.6.4.tar.gz'
sha1 'a83f086cc9fbe802dfd0ff3b6631acf29461b75e'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
# we only want to build the web100clt client so we need
# to change to the src directory before installing.
cd 'src' do
system "make install"
end
cd 'doc' do
man1.install 'web100clt.man' => 'web100clt.1'
end
end
def test
system "#{bin}/web100clt", "-v"
end
end
|