37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
class Mill < Formula
|
|
desc "Scala build tool"
|
|
homepage "https://com-lihaoyi.github.io/mill/mill/Intro_to_Mill.html"
|
|
url "https://github.com/com-lihaoyi/mill/releases/download/0.10.7/0.10.7-assembly"
|
|
sha256 "a51cae4f14164671814dab1db24219d05d4b1a0c04f98e64b07b04d519a9d418"
|
|
license "MIT"
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "9d80a9fcec00f886f398cbdfd1c840354f9080f51a843103e9aa54ac13699763"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install Dir["*"].shift => "mill"
|
|
chmod 0555, libexec/"mill"
|
|
(bin/"mill").write_env_script libexec/"mill", Language::Java.overridable_java_home_env
|
|
end
|
|
|
|
test do
|
|
(testpath/"build.sc").write <<~EOS
|
|
import mill._
|
|
import mill.scalalib._
|
|
object foo extends ScalaModule {
|
|
def scalaVersion = "2.12.8"
|
|
}
|
|
EOS
|
|
output = shell_output("#{bin}/mill resolve __.compile")
|
|
assert_equal "foo.compile", output.lines.last.chomp
|
|
end
|
|
end
|