homebrew-core/Formula/phoronix-test-suite.rb
Igor Kapkov c9f8c72768 phoronix-test-suite 8.4.0
Closes #34492.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-11-27 09:42:11 +01:00

25 lines
886 B
Ruby

class PhoronixTestSuite < Formula
desc "Open-source automated testing/benchmarking software"
homepage "https://www.phoronix-test-suite.com/"
url "https://github.com/phoronix-test-suite/phoronix-test-suite/archive/v8.4.0.tar.gz"
sha256 "10d8a7e37b41719b81ae5c24c15762d0080cfb2abf34bbd079096d6194a53285"
head "https://github.com/phoronix-test-suite/phoronix-test-suite.git"
bottle :unneeded
def install
ENV["DESTDIR"] = buildpath/"dest"
system "./install-sh", prefix
prefix.install (buildpath/"dest/#{prefix}").children
bash_completion.install "dest/#{prefix}/../etc/bash_completion.d/phoronix-test-suite"
end
# 7.4.0 installed files in the formula's rack so clean up the mess.
def post_install
rm_rf [prefix/"../etc", prefix/"../usr"]
end
test do
assert_match version.to_s, shell_output("#{bin}/phoronix-test-suite version")
end
end