homebrew-core/Formula/http_load.rb
Tamir Duberstein 68d871e425 Depend on: prefix -> opt_prefix
These formulae care about where concretely their dependency is
installed, not where the stable variant of the dependency is located
by default.

Closes Homebrew/homebrew#39386.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-05 21:16:59 -04:00

33 lines
770 B
Ruby

class HttpLoad < Formula
homepage "http://www.acme.com/software/http_load/"
url "http://www.acme.com/software/http_load/http_load-14aug2014.tar.gz"
version "20140814"
sha256 "538a19cf1a45b1c0ca9be2a5f421b0a3f8d1989c24657d08bc139144b6e14622"
# HTTPS support
depends_on "openssl" => :optional
def install
bin.mkpath
man1.mkpath
args = %W[
BINDIR=#{bin}
LIBDIR=#{lib}
MANDIR=#{man1}
CC=#{ENV.cc}
]
if build.with? "openssl"
inreplace "Makefile", "#SSL_", "SSL_"
args << "SSL_TREE=#{Formula["openssl"].opt_prefix}"
end
system "make", "install", *args
end
test do
(testpath/"urls").write "http://brew.sh"
system "#{bin}/http_load", "-rate", "1", "-fetches", "1", "urls"
end
end