86 lines
2.8 KiB
Ruby
86 lines
2.8 KiB
Ruby
class Scala < Formula
|
|
desc "Scala programming language"
|
|
homepage "http://www.scala-lang.org/"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "abe3bdb7c49c2d8542731b5bff8ddd2b64b361e5fbc104217ca2f2423b73fbb9" => :yosemite
|
|
sha256 "87619ccc086a0636f89fec974759ae952dc1979948567f7e7d6200b7be64dffc" => :mavericks
|
|
sha256 "44c9502a3195a7cd25699162948b4eb80676547a24ed0a001520320d6a54aac7" => :mountain_lion
|
|
end
|
|
|
|
option "with-docs", "Also install library documentation"
|
|
option "with-src", "Also install sources for IDE support"
|
|
|
|
stable do
|
|
url "http://www.scala-lang.org/files/archive/scala-2.11.7.tgz"
|
|
sha256 "ffe4196f13ee98a66cf54baffb0940d29432b2bd820bd0781a8316eec22926d0"
|
|
|
|
resource "docs" do
|
|
url "http://www.scala-lang.org/files/archive/scala-docs-2.11.7.zip"
|
|
sha256 "90981bf388552465ce07761c8f991c13be332ee07e97ff44f4b8be278f489667"
|
|
end
|
|
|
|
resource "src" do
|
|
url "https://github.com/scala/scala/archive/v2.11.7.tar.gz"
|
|
sha256 "1679ee604bc4e881b0d325e164c39c02dcfa711d53cd3115f5a6c9676c5915ef"
|
|
end
|
|
end
|
|
|
|
devel do
|
|
url "http://www.scala-lang.org/files/archive/scala-2.12.0-M1.tgz"
|
|
sha256 "e48971939fa0f82ff3190ecafd22ad98d9d00eb4aef09cd2197265dc44f72eee"
|
|
version "2.12.0-M1"
|
|
|
|
resource "docs" do
|
|
url "http://www.scala-lang.org/files/archive/scala-docs-2.12.0-M1.zip"
|
|
sha256 "36683ec16e30b69e3abf424c8cff1d49ebfd5f07b4cd3a015ced767a1ca81221"
|
|
version "2.12.0-M1"
|
|
end
|
|
|
|
resource "src" do
|
|
url "https://github.com/scala/scala/archive/v2.12.0-M1.tar.gz"
|
|
sha256 "0c129529b8dbafa89782c997904705dc59d5b9abf01f97218f86f1c602fca339"
|
|
version "2.12.0-M1"
|
|
end
|
|
end
|
|
|
|
resource "completion" do
|
|
url "https://raw.githubusercontent.com/scala/scala-dist/v2.11.4/bash-completion/src/main/resources/completion.d/2.9.1/scala"
|
|
sha256 "95aeba51165ce2c0e36e9bf006f2904a90031470ab8d10b456e7611413d7d3fd"
|
|
end
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
doc.install Dir["doc/*"]
|
|
share.install "man"
|
|
libexec.install "bin", "lib"
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
bash_completion.install resource("completion")
|
|
doc.install resource("docs") if build.with? "docs"
|
|
libexec.install resource("src").files("src") if build.with? "src"
|
|
|
|
# Set up an IntelliJ compatible symlink farm in 'idea'
|
|
idea = prefix/"idea"
|
|
idea.install_symlink libexec/"src", libexec/"lib"
|
|
idea.install_symlink doc => "doc"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To use with IntelliJ, set the Scala home to:
|
|
#{opt_prefix}/idea
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
file = testpath/"hello.scala"
|
|
file.write <<-EOS.undent
|
|
object Computer {
|
|
def main(args: Array[String]) {
|
|
println(s"${2 + 2}")
|
|
}
|
|
}
|
|
EOS
|
|
assert_equal "4", shell_output("#{bin}/scala #{file}").strip
|
|
end
|
|
end
|