2011-04-12 19:27:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Sipp < Formula
|
|
|
|
homepage 'http://sipp.sourceforge.net/'
|
2014-02-14 03:36:35 +00:00
|
|
|
url "http://downloads.sourceforge.net/project/sipp/sipp/3.4/sipp-3.3.990.tar.gz"
|
|
|
|
sha1 "b2637cb72556595253bbdd4a68cc974c9ac1d92e"
|
|
|
|
|
|
|
|
depends_on "openssl" => :optional
|
2011-04-12 19:27:56 +00:00
|
|
|
|
|
|
|
def install
|
2014-02-14 03:36:35 +00:00
|
|
|
args = ["--with-pcap"]
|
|
|
|
args << "--with-openssl" if build.with? "openssl"
|
|
|
|
system "./configure", *args
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "DESTDIR=#{prefix}"
|
2011-04-12 19:27:56 +00:00
|
|
|
bin.install "sipp"
|
|
|
|
end
|
|
|
|
end
|