homebrew-core/Formula/kobalt.rb
Igor Kapkov 1154adcf79
kobalt 1.0.120
Closes #34113.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-11-16 16:04:58 +08:00

42 lines
1 KiB
Ruby

class Kobalt < Formula
desc "Build system"
homepage "https://beust.com/kobalt/"
url "https://github.com/cbeust/kobalt/releases/download/1.0.120/kobalt-1.0.120.zip"
sha256 "6036607feb29a97c5d30f216ecf8fd8ea5fac1ed50943b8a20002b6a4ca5df3b"
bottle :unneeded
def install
libexec.install "kobalt-#{version}/kobalt"
(bin/"kobaltw").write <<~EOS
#!/bin/bash
java -jar #{libexec}/kobalt/wrapper/kobalt-wrapper.jar $*
EOS
end
test do
(testpath/"src/main/kotlin/com/A.kt").write <<~EOS
package com
class A
EOS
(testpath/"kobalt/src/Build.kt").write <<~EOS
import com.beust.kobalt.*
import com.beust.kobalt.api.*
import com.beust.kobalt.plugin.packaging.*
val p = project {
name = "test"
version = "1.0"
assemble {
jar {}
}
}
EOS
system "#{bin}/kobaltw", "assemble"
output = "kobaltBuild/libs/test-1.0.jar"
assert_predicate testpath/output, :exist?, "Couldn't find #{output}"
end
end