homebrew-core/Formula/gradle.rb

19 lines
494 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Gradle < Formula
desc "Build system based on the Groovy language"
homepage "https://www.gradle.org/"
url "https://downloads.gradle.org/distributions/gradle-2.9-bin.zip"
sha256 "c9159ec4362284c0a38d73237e224deae6139cbde0db4f0f44e1c7691dd3de2f"
2015-10-21 06:59:31 +00:00
bottle :unneeded
2010-06-15 17:26:59 +00:00
def install
libexec.install %w[bin lib]
bin.install_symlink libexec+"bin/gradle"
2010-06-15 17:26:59 +00:00
end
test do
output = shell_output("#{bin}/gradle --version")
assert_match /Gradle #{version}/, output
end
2011-03-10 05:11:03 +00:00
end