blob: 3e9aaf809247723a02f1cde467265602a13c71c3 (
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'
md5 '098d9d55536b8a0ab07ef13eb15b7fd4'
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
|