42 lines
1 KiB
Ruby
42 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.114/kobalt-1.0.114.zip"
|
|
sha256 "2f1e3eab940ba778a43a1d0dcd1140f2a77d67c317ddbf6dc60eb1b4e7f2b3d2"
|
|
|
|
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
|