homebrew-core/Formula/sjk.rb
2018-05-27 23:38:36 -07:00

19 lines
506 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.10/sjk-plus-0.10.jar"
sha256 "182185f38ed3bb728a9536c438e767606969c698c0e976df907d8238c4f9182b"
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