9c098cb9b6
Closes Homebrew/homebrew#27218.
16 lines
452 B
Ruby
16 lines
452 B
Ruby
require 'formula'
|
|
|
|
class Slowhttptest < Formula
|
|
homepage 'http://code.google.com/p/slowhttptest/'
|
|
url 'https://slowhttptest.googlecode.com/files/slowhttptest-1.6.tar.gz'
|
|
sha1 'f5a64365b987083015ac98f6c20746021176292e'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/slowhttptest", *%w{-u http://google.com -p 1 -r 1 -l 1 -i 1}
|
|
end
|
|
end
|