3a47ede319
Closes #45540. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
28 lines
786 B
Ruby
28 lines
786 B
Ruby
class Mill < Formula
|
|
desc "Scala build tool"
|
|
homepage "https://www.lihaoyi.com/mill/"
|
|
url "https://github.com/lihaoyi/mill/releases/download/0.5.2/0.5.2"
|
|
sha256 "eac1ac16b0cf3ed996a1ec9948d267b6dee8d1e0ff3ab65ad14da975ed4f5f91"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
def install
|
|
libexec.install Dir["*"].shift => "mill"
|
|
chmod 0555, libexec/"mill"
|
|
(bin/"mill").write_env_script libexec/"mill", Language::Java.java_home_env("1.8+")
|
|
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
|