homebrew-core/Formula/gradle.rb

37 lines
1.1 KiB
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-7.3.2-all.zip"
sha256 "dd54e87b4d7aa8ff3c6afb0f7805aa121d4b70bca55b8c9b1b896eb103184582"
license "Apache-2.0"
livecheck do
url "https://services.gradle.org/distributions/"
regex(/href=.*?gradle[._-]v?(\d+(?:\.\d+)+)-all\.(?:[tz])/i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "bba42c8856233ce9412d54a1871fe31d15f9936645ccf7b42e57726e3c43f99c"
end
depends_on "openjdk"
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin docs lib src]
env = Language::Java.overridable_java_home_env
(bin/"gradle").write_env_script libexec/"bin/gradle", env
end
test do
assert_match version.to_s, shell_output("#{bin}/gradle --version")
(testpath/"settings.gradle").write ""
(testpath/"build.gradle").write <<~EOS
println "gradle works!"
EOS
gradle_output = shell_output("#{bin}/gradle build --no-daemon")
assert_includes gradle_output, "gradle works!"
end
end