homebrew-core/Formula/kotlin.rb
equal-l2 f62fb5bbcd kotlin 1.1.3-2
Closes #15464.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-07-10 10:29:56 +02:00

25 lines
824 B
Ruby

class Kotlin < Formula
desc "Statically typed programming language for the JVM"
homepage "https://kotlinlang.org/"
url "https://github.com/JetBrains/kotlin/releases/download/v1.1.3-2/kotlin-compiler-1.1.3-2.zip"
sha256 "42abf39538e0ea5960b98e314191b40570090789431e2eac17dd54ebd8b74406"
bottle :unneeded
def install
libexec.install %w[bin lib]
rm Dir["#{libexec}/bin/*.bat"]
bin.install_symlink Dir["#{libexec}/bin/*"]
end
test do
(testpath/"test.kt").write <<-EOS.undent
fun main(args: Array<String>) {
println("Hello World!")
}
EOS
system "#{bin}/kotlinc", "test.kt", "-include-runtime", "-d", "test.jar"
system "#{bin}/kotlinc-js", "test.kt", "-output", "test.js"
system "#{bin}/kotlinc-jvm", "test.kt", "-include-runtime", "-d", "test.jar"
end
end