homebrew-core/Formula/sjk.rb
2018-03-31 20:34:29 +10:00

19 lines
508 B
Ruby

class Sjk < Formula
desc "Swiss Java Knife"
homepage "https://github.com/aragozin/jvm-tools"
url "https://search.maven.org/remotecontent?filepath=org/gridkit/jvmtool/sjk-plus/0.9.3/sjk-plus-0.9.3.jar"
sha256 "0f7abd4321c0bc418aafb20a6c3097a1d5e4a1d5ea09347c6f8078f4c39ce7ee"
bottle :unneeded
depends_on :java
def install
libexec.install "sjk-plus-#{version}.jar"
bin.write_jar_script "#{libexec}/sjk-plus-#{version}.jar", "sjk"
end
test do
system bin/"sjk", "jps"
end
end