56 lines
2.6 KiB
Ruby
56 lines
2.6 KiB
Ruby
class Httperf < Formula
|
|
desc "Tool for measuring webserver performance"
|
|
homepage "https://github.com/httperf/httperf"
|
|
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/httperf/httperf-0.9.0.tar.gz"
|
|
sha256 "e1a0bf56bcb746c04674c47b6cfa531fad24e45e9c6de02aea0d1c5f85a2bf1c"
|
|
license "GPL-2.0"
|
|
revision 2
|
|
|
|
# Until the upstream GitHub repository creates a new release (something after
|
|
# 0.9.0), we're unable to create a check that can identify new versions.
|
|
livecheck do
|
|
skip "No version information available to check"
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_ventura: "3381391da57a081b647ac8d8aa09a6048c63a1c23211f947f2add0a684b35afc"
|
|
sha256 cellar: :any, arm64_monterey: "1d154cd3cc694cb0a57056fd7a3348a681892e7e808fea2639402db0e9b8930e"
|
|
sha256 cellar: :any, arm64_big_sur: "2628055d8209f52ee35bd325c155bb506c36b581fa697d013f6fe32ed6ab0b2f"
|
|
sha256 cellar: :any, ventura: "58e5433b256076f049d4d88f3deddcde0b35937ce24d4a8bea953a133fcd20b2"
|
|
sha256 cellar: :any, monterey: "2db16578e75d150f3abe98f416359a307c1632ee00dcea6cc8f904ba95754eb1"
|
|
sha256 cellar: :any, big_sur: "5c8f3e33c44d4d705ea1e23663ac922cc61019299787defcf60df6161608a5de"
|
|
sha256 cellar: :any, catalina: "80a2634adda8fe39ebda84ccdf6cbbb0357668da3615067b6f9714229801d085"
|
|
sha256 cellar: :any, mojave: "390d46278c9e7bd0f58003ba49bc1a0ab110ab24864029d6ae9fd8d3f491b57c"
|
|
sha256 cellar: :any, high_sierra: "5c049e4bfc272313e7c1051da7430bc09e712d5a70f1593c5ecf08ac94b3b238"
|
|
sha256 cellar: :any, sierra: "015d2ce99b57fa808ae284f44904ca209e11603bf66085bf64a8270c45203490"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "a9f46b3ca870873ea6132895df6261af1ace9559f472d72d51187f15d354214c"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/httperf/httperf.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "openssl@1.1"
|
|
|
|
# Upstream patch for OpenSSL 1.1 compatibility
|
|
# https://github.com/httperf/httperf/pull/48
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/85fa66a9/httperf/openssl-1.1.diff"
|
|
sha256 "69d5003f60f5e46d25813775bbf861366fb751da4e0e4d2fe7530d7bb3f3660a"
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/httperf", "--version"
|
|
end
|
|
end
|