b90a59ed65
Closes #46889. Signed-off-by: Rui Chen <chenrui333@gmail.com>
20 lines
622 B
Ruby
20 lines
622 B
Ruby
class Gradle < Formula
|
|
desc "Open-source build automation tool based on the Groovy and Kotlin DSL"
|
|
homepage "https://www.gradle.org/"
|
|
url "https://services.gradle.org/distributions/gradle-6.0.1-all.zip"
|
|
sha256 "6f6cfdbb12a577c3845522a1c7fbfe1295ea05d87edabedd4e23fd2bf02b88b1"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install %w[bin docs lib samples src]
|
|
(bin/"gradle").write_env_script libexec/"bin/gradle", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/gradle --version")
|
|
end
|
|
end
|