homebrew-core/Formula/sjk.rb
ilovezfs 87a824b836 sjk 0.9.2
Closes #24336.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-02-20 12:02:36 +01: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.2/sjk-plus-0.9.2.jar"
sha256 "129c7244869eebf225c0c21231364dd026d7a5ef77ea184329ee45f0594443d1"
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