homebrew-core/Formula/zanata-client.rb
2018-02-01 00:55:47 -08:00

20 lines
686 B
Ruby

class ZanataClient < Formula
desc "Zanata translation system command-line client"
homepage "http://zanata.org/"
url "https://search.maven.org/remotecontent?filepath=org/zanata/zanata-cli/4.4.1/zanata-cli-4.4.1-dist.tar.gz"
sha256 "24f1a5c79073c0153b92f2aaad1997a56c34d9731030b5000d9916d77651f25f"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install Dir["*"]
(bin/"zanata-cli").write_env_script libexec/"bin/zanata-cli", Language::Java.java_home_env("1.8+")
bash_completion.install libexec/"bin/zanata-cli-completion"
end
test do
assert_match /Zanata Java command-line client/, shell_output("#{bin}/zanata-cli --help")
end
end