mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
27 lines
904 B
Ruby
27 lines
904 B
Ruby
require 'package'
|
|
|
|
class Kotlin < Package
|
|
description 'Statically typed programming language for modern multiplatform applications'
|
|
homepage 'https://kotlinlang.org/'
|
|
version '2.1.0'
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url "https://github.com/JetBrains/kotlin/releases/download/v#{version}/kotlin-compiler-#{version}.zip"
|
|
source_sha256 'b6698d5728ad8f9edcdd01617d638073191d8a03139cc538a391b4e3759ad297'
|
|
|
|
depends_on 'openjdk8'
|
|
|
|
no_compile_needed
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/kotlin"
|
|
FileUtils.rm_f Dir['bin/*.bat']
|
|
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/share/kotlin"
|
|
Dir["#{CREW_DEST_PREFIX}/share/kotlin/bin/*"].each do |path|
|
|
file = File.basename(path)
|
|
FileUtils.ln_s "#{CREW_PREFIX}/share/kotlin/bin/#{file}", "#{CREW_DEST_PREFIX}/bin"
|
|
end
|
|
end
|
|
end
|