Merge pull request #207020 from Homebrew/bump-qpdf-11.10.0
[Homebrew/homebrew-core.git] / Formula / t / tsung.rb
blob8aba9dcaaa264c7b08ba022494628b537d88ca6a
1 class Tsung < Formula
2   desc "Load testing for HTTP, PostgreSQL, Jabber, and others"
3   # `http://tsung.erlang-projects.org/` is no longer accessible,
4   # upstream bug report, https://github.com/processone/tsung/issues/417
5   homepage "https://github.com/processone/tsung"
6   url "https://github.com/processone/tsung/archive/refs/tags/v1.8.0.tar.gz"
7   sha256 "6c55df48b82f185dfd60ae7271e09bbc25c6c8bc568bb8bfc0cdb056d77c3899"
8   license "GPL-2.0-or-later"
9   head "https://github.com/processone/tsung.git", branch: "develop"
11   bottle do
12     rebuild 1
13     sha256 cellar: :any_skip_relocation, arm64_sonoma:  "49d55c65d11487c31015102992d20c0853656fc09b85e6f35570573417a949ec"
14     sha256 cellar: :any_skip_relocation, arm64_ventura: "d847edc850acbfe70004c707b2ec18962c7b83877efb2bd576f23fc31119d82f"
15     sha256 cellar: :any_skip_relocation, sonoma:        "8e611fcda350d09739af49168a0514ad347454c0d4d1722f18fe254f98334ee9"
16     sha256 cellar: :any_skip_relocation, ventura:       "92304f38be35fef5b26c9469042c657220ee200d1c3fcd88ecb3b98b1a1063e3"
17     sha256 cellar: :any_skip_relocation, x86_64_linux:  "e15a598cd9b077c6cd445b23a56d8d799f7ea330c92cea542d244bdc3d82aa36"
18   end
20   depends_on "erlang"
21   depends_on "gnuplot"
23   def install
24     system "./configure", *std_configure_args
25     system "make"
26     ENV.deparallelize
27     system "make", "install"
28   end
30   test do
31     system bin/"tsung", "status"
32   end
33 end