2015-02-26 03:10:02 +00:00
|
|
|
class Gssh < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "SSH automation tool based on Groovy DSL"
|
2015-02-26 03:10:02 +00:00
|
|
|
homepage "https://github.com/int128/groovy-ssh"
|
2016-09-26 16:21:25 +00:00
|
|
|
url "https://github.com/int128/groovy-ssh/releases/download/2.7.0/gssh.jar"
|
|
|
|
sha256 "32646321b01e42b40f339a9d7647ea4cadcf9a26f827944144f0baf99e85f00d"
|
2015-02-26 03:10:02 +00:00
|
|
|
head "https://github.com/int128/groovy-ssh.git"
|
|
|
|
|
2016-04-09 14:01:42 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2016-09-24 15:45:48 +00:00
|
|
|
depends_on :java => "1.6+"
|
2015-02-26 03:10:02 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
if build.head?
|
|
|
|
system "./gradlew", "shadowJar"
|
|
|
|
libexec.install "build/libs/gssh.jar"
|
|
|
|
else
|
|
|
|
libexec.install "gssh.jar"
|
|
|
|
end
|
|
|
|
bin.write_jar_script libexec/"gssh.jar", "gssh"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-04-09 14:01:42 +00:00
|
|
|
system bin/"gssh"
|
2015-02-26 03:10:02 +00:00
|
|
|
end
|
|
|
|
end
|