homebrew-core/Formula/tsung.rb
Sebastian Cohnen a57b2f2741 tsung 1.5
Closes Homebrew/homebrew#20227.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-03 11:09:58 -07:00

17 lines
376 B
Ruby

require 'formula'
class Tsung < Formula
homepage 'http://tsung.erlang-projects.org/'
url 'http://tsung.erlang-projects.org/dist/tsung-1.5.0.tar.gz'
sha1 '29cc209045ae7bc4aea1c9ab8269758135dbde27'
depends_on 'erlang'
depends_on 'gnuplot'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
ENV.j1
system "make install"
end
end