23 lines
737 B
Ruby
23 lines
737 B
Ruby
class Gradle < Formula
|
|
desc "Build system based on the Groovy language"
|
|
homepage "https://www.gradle.org/"
|
|
url "https://services.gradle.org/distributions/gradle-4.5.1-all.zip"
|
|
sha256 "ede2333b509ab67e4b6f51adb1419870fb34bbead0c8357dd803532b531508eb"
|
|
|
|
bottle :unneeded
|
|
|
|
option "with-all", "Installs Javadoc, examples, and source in addition to the binaries"
|
|
|
|
depends_on :java => "1.7+"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install %w[bin lib]
|
|
libexec.install %w[docs media samples src] if build.with? "all"
|
|
(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
|