homebrew-core/Formula/jmxterm.rb
mattrussi d6a145b0a6 jmxterm 1.0.0 (New formula) (#33396)
Signed-off-by: Matt Russi <mattrussi@users.noreply.github.com>
2018-12-31 19:25:15 +11:00

19 lines
662 B
Ruby

class Jmxterm < Formula
desc "Open source, command-line based interactive JMX client"
homepage "https://wiki.cyclopsgroup.org/jmxterm/"
url "https://downloads.sourceforge.net/project/cyclops-group/jmxterm/1.0.0/jmxterm-1.0.0-uber.jar"
sha256 "c1f49b132c435ff5059f48aa560f07feb7a742a9db595ecae7fc34ca0aca054f"
bottle :unneeded
depends_on :java => "1.8"
def install
libexec.install "jmxterm-#{version}-uber.jar"
bin.write_jar_script libexec/"jmxterm-#{version}-uber.jar", "jmxterm", "", :java_version => "1.8"
end
test do
assert_match(/\"software\.name\".=.\"jmxterm\";/, shell_output("echo about | #{bin}/jmxterm -n"))
end
end