homebrew-core/Formula/scala@2.13.rb

61 lines
1.7 KiB
Ruby

class ScalaAT213 < Formula
desc "JVM-based programming language"
homepage "https://www.scala-lang.org/"
url "https://downloads.lightbend.com/scala/2.13.10/scala-2.13.10.tgz"
mirror "https://www.scala-lang.org/files/archive/scala-2.13.10.tgz"
mirror "https://downloads.typesafe.com/scala/2.13.10/scala-2.13.10.tgz"
sha256 "b01461599cd0786042c64b533790f45e51babb91c52dc465d846838e97019cc4"
license "Apache-2.0"
livecheck do
url "https://www.scala-lang.org/files/archive/"
regex(/href=.*?scala[._-]v?(2\.13(?:\.\d+)+)(?:[._-]final)?\.t/i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "3d2bb30143b824ba1742dd85a1622553c0273290b9e275c3e7775654304613f8"
end
keg_only :versioned_formula
depends_on "openjdk"
def install
# Replace `/usr/local` references for uniform bottles
inreplace Dir["man/man1/scala{,c}.1"], "/usr/local", HOMEBREW_PREFIX
rm Dir["bin/*.bat"]
doc.install (buildpath/"doc").children
share.install "man"
libexec.install "lib"
prefix.install "bin"
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env
# Set up an IntelliJ compatible symlink farm in 'idea'
idea = prefix/"idea"
idea.install_symlink libexec/"lib"
idea.install_symlink doc => "doc"
end
def caveats
<<~EOS
To use with IntelliJ, set the Scala home to:
#{opt_prefix}/idea
EOS
end
test do
file = testpath/"Test.scala"
file.write <<~EOS
object Test {
def main(args: Array[String]): Unit = {
println(s"${2 + 2}")
}
}
EOS
out = shell_output("#{bin}/scala #{file}").strip
assert_equal "4", out
end
end