mill: depend on openjdk
parent
a269c6f031
commit
abed4fb196
|
@ -3,15 +3,16 @@ class Mill < Formula
|
||||||
homepage "https://www.lihaoyi.com/mill/"
|
homepage "https://www.lihaoyi.com/mill/"
|
||||||
url "https://github.com/lihaoyi/mill/releases/download/0.6.0/0.6.0"
|
url "https://github.com/lihaoyi/mill/releases/download/0.6.0/0.6.0"
|
||||||
sha256 "499f73887128a85ec5ff904f7c6e009354ef49148ac0d4307ea03431d7d8be5d"
|
sha256 "499f73887128a85ec5ff904f7c6e009354ef49148ac0d4307ea03431d7d8be5d"
|
||||||
|
revision 1
|
||||||
|
|
||||||
bottle :unneeded
|
bottle :unneeded
|
||||||
|
|
||||||
depends_on :java => "1.8+"
|
depends_on "openjdk"
|
||||||
|
|
||||||
def install
|
def install
|
||||||
libexec.install Dir["*"].shift => "mill"
|
libexec.install Dir["*"].shift => "mill"
|
||||||
chmod 0555, libexec/"mill"
|
chmod 0555, libexec/"mill"
|
||||||
(bin/"mill").write_env_script libexec/"mill", Language::Java.java_home_env("1.8+")
|
(bin/"mill").write_env_script libexec/"mill", :JAVA_HOME => "${JAVA_HOME:-#{Formula["openjdk"].opt_prefix}}"
|
||||||
end
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
|
|
Loading…
Reference in New Issue