homebrew-core/Formula/phoronix-test-suite.rb
2017-10-29 12:12:42 -07:00

17 lines
561 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/v7.4.0.tar.gz"
sha256 "beb0875ca74b62a5bb0768c337baceb3415817a6ef487dd14289ab2d84b6c504"
bottle :unneeded
def install
system "./install-sh", prefix
bash_completion.install "./pts-core/static/bash_completion"
end
test do
assert_match "Tynset", shell_output("#{bin}/phoronix-test-suite version | grep -v ^$")
end
end