Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 27th, 2012  |  syntax: None  |  size: 0.59 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Patch for support to launch scala command on MSYS/Windows
  2.  
  3. Put MSYS awake PATH translation into each command bash scripts
  4.  
  5. ## Requirements
  6.  
  7. - JDK:http://java.sun.com/javase/ja/6/download.html
  8. - scala: http://www.scala-lang.org/downloads
  9. - mingw/msys: http://www.mingw.org/wiki/Getting_Started
  10.   - and msys-unzip
  11.  
  12. ## patch Install
  13.  
  14. <pre>
  15. wget http://www.scala-lang.org/downloads/distrib/files/scala-2.9.0.1.zip
  16. wget --no-check-certificate https://raw.github.com/gist/1021305/scala-2.9.0.1-msys-support.patch
  17. unzip scala-2.9.0.1.zip
  18. cd scala-2.9.0.1
  19. cat ../scala-2.9.0.1-msys-support.patch | patch -p1
  20. </pre>