Last active
August 29, 2015 14:16
-
-
Save hsanchez/2cd1844faecb5147ac11 to your computer and use it in GitHub Desktop.
Installing scala 2.10.4 with homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # to install the latest stable version: | |
| brew install scala --with-docs | |
| # to install scala-2.10-4: | |
| brew install https://gist.githubusercontent.com/hsanchez/2cd1844faecb5147ac11/raw/1aa2066cb7e8d6e7ca121316a5aa4360a30b34bf/scala.rb --with-docs | |
| # to switch versions (from https://github.com/mxcl/homebrew/wiki/External-Commands): | |
| brew switch scala 2.10.4 | |
| brew switch scala 2.10.3 | |
| # to see which scala you're currently using: | |
| brew which scala |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Scala < Formula | |
| homepage 'http://www.scala-lang.org/' | |
| url 'http://www.scala-lang.org/files/archive/scala-2.10.4.tgz' | |
| sha1 '970f779f155719838e81a267a7418a958fd4c13f' | |
| devel do | |
| url 'http://downloads.typesafe.com/scala/2.11.0-RC4/scala-2.11.0-RC4.tgz' | |
| sha1 '09c0f022a4f03a0565a3454eabc0b3308fe4de2a' | |
| version '2.11.0-RC4' | |
| resource 'docs' do | |
| url 'http://downloads.typesafe.com/scala/2.11.0-RC4/scala-docs-2.11.0-RC4.zip' | |
| sha1 'a2138121ff3b4e2c31195a798f14bddf775250a5' | |
| version '2.11.0-RC4' | |
| end | |
| end | |
| option 'with-docs', 'Also install library documentation' | |
| resource 'docs' do | |
| url 'http://www.scala-lang.org/files/archive/scala-docs-2.10.4.zip' | |
| sha1 '7ad47f9634fd2f452cadf35f7241102207c1a1cc' | |
| end | |
| resource 'completion' do | |
| url 'https://raw.github.com/scala/scala-dist/27bc0c25145a83691e3678c7dda602e765e13413/completion.d/2.9.1/scala' | |
| sha1 'e2fd99fe31a9fb687a2deaf049265c605692c997' | |
| end | |
| def install | |
| rm_f Dir["bin/*.bat"] | |
| doc.install Dir['doc/*'] | |
| man1.install Dir['man/man1/*'] | |
| libexec.install Dir['*'] | |
| bin.install_symlink Dir["#{libexec}/bin/*"] | |
| bash_completion.install resource('completion') | |
| if build.with? 'docs' | |
| branch = build.stable? ? 'scala-2.10' : 'scala-2.11' | |
| (share/'doc'/branch).install resource('docs') | |
| end | |
| # Set up an IntelliJ compatible symlink farm in 'idea' | |
| idea = prefix/'idea' | |
| idea.install_symlink libexec/'src', libexec/'lib' | |
| (idea/'doc/scala-devel-docs').install_symlink doc => 'api' | |
| 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(2 + 2) | |
| } | |
| } | |
| EOS | |
| output = `'#{bin}/scala' #{file}` | |
| assert_equal "4", output.strip | |
| assert $?.success? | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment