homebrew-core/Formula/kobalt.rb
ilovezfs 91069bfb17 kobalt 1.0.15
Closes #11229.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-03-18 11:28:52 +01:00

44 lines
1 KiB
Ruby

class Kobalt < Formula
desc "Build system"
homepage "http://beust.com/kobalt"
url "https://github.com/cbeust/kobalt/releases/download/1.0.15/kobalt-1.0.15.zip"
sha256 "d9cd1a5e88bbad974c21f1b0ae37b5db88480b18b57e74f8a788def4fb9a89ae"
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