mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
23 lines
874 B
Ruby
23 lines
874 B
Ruby
require 'package'
|
|
|
|
class Gradle < Package
|
|
description 'From mobile apps to microservices, from small startups to big enterprises, Gradle helps teams build, automate and deliver better software, faster.'
|
|
homepage 'https://gradle.org/'
|
|
version '9.2.1'
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url "https://github.com/gradle/gradle-distributions/releases/download/v#{version}/gradle-#{version}-bin.zip"
|
|
source_sha256 '72f44c9f8ebcb1af43838f45ee5c4aa9c5444898b3468ab3f4af7b6076c5bc3f'
|
|
|
|
depends_on 'openjdk8' unless File.exist? "#{CREW_PREFIX}/bin/java"
|
|
|
|
no_compile_needed
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/gradle"
|
|
FileUtils.cp_r '.', "#{CREW_DEST_PREFIX}/share/gradle"
|
|
FileUtils.ln_s "#{CREW_PREFIX}/share/gradle/bin/gradle", "#{CREW_DEST_PREFIX}/bin"
|
|
end
|
|
end
|