4593ae5782
1.5.1 includes a bug fix for HTTPS server testing. Closes Homebrew/homebrew#29917. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
426 B
Ruby
19 lines
426 B
Ruby
require 'formula'
|
|
|
|
class Tsung < Formula
|
|
homepage 'http://tsung.erlang-projects.org/'
|
|
url 'http://tsung.erlang-projects.org/dist/tsung-1.5.1.tar.gz'
|
|
sha1 'a997b76399dc40d3bda27d84c701c795ee40b808'
|
|
|
|
head 'https://github.com/processone/tsung.git'
|
|
|
|
depends_on 'erlang'
|
|
depends_on 'gnuplot'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
ENV.j1
|
|
system "make install"
|
|
end
|
|
end
|