homebrew-core/Formula/kobalt.rb
Cedric Beust 4c0f8f51ad kobalt 0.683
kobalt 0.683.

Closes Homebrew/homebrew#50243.

Signed-off-by: Andrew Janke <andrew@apjanke.net>
2016-03-19 19:13:35 +08:00

45 lines
1 KiB
Ruby

class Kobalt < Formula
desc "Build system"
homepage "http://beust.com/kobalt"
url "https://github.com/cbeust/kobalt/releases/download/0.683/kobalt-0.683.zip"
sha256 "f9c08269f3065aaa4a13362e62f2ed85f077ab34e2b61f66e158d36c3f535d85"
bottle :unneeded
def install
libexec.install %w[kobalt]
(bin/"kobaltw").write <<-EOS.undent
#!/bin/bash
java -jar #{libexec}/kobalt/wrapper/kobalt-wrapper.jar $*
EOS
end
test do
ENV.java_cache
(testpath/"src/main/kotlin/com/A.kt").write <<-EOS.undent
package com
class A
EOS
(testpath/"kobalt/src/Build.kt").write <<-EOS.undent
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 File.exist?(output), "Couldn't find #{output}"
end
end