749972b2aa
Closes Homebrew/homebrew#43923. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
16 lines
474 B
Ruby
16 lines
474 B
Ruby
class Gradle < Formula
|
|
desc "Build system based on the Groovy language"
|
|
homepage "https://www.gradle.org/"
|
|
url "https://downloads.gradle.org/distributions/gradle-2.7-bin.zip"
|
|
sha256 "cde43b90945b5304c43ee36e58aab4cc6fb3a3d5f9bd9449bb1709a68371cb06"
|
|
|
|
def install
|
|
libexec.install %w[bin lib]
|
|
bin.install_symlink libexec+"bin/gradle"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/gradle --version")
|
|
assert_match /Gradle #{version}/, output
|
|
end
|
|
end
|