homebrew-core/Formula/sjk.rb
2017-08-06 09:54:31 -07:00

19 lines
504 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.8/sjk-plus-0.8.jar"
sha256 "02aa1f335e12793d0fc634d97cafbf994b2efbd00261302485b0a12646078059"
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