diff options
| author | John Harrison | 2012-02-02 16:45:52 -0600 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-02-02 22:15:11 -0800 |
| commit | b8e6fc00ec7da06247d6fea5b8e7a9272d14b86d (patch) | |
| tree | f7400c491c6c3bbd19e9c22097b9ad68e6150e14 /Library/Formula | |
| parent | e0aedbda9860db7d1e7b53db209b726662c51127 (diff) | |
| download | homebrew-b8e6fc00ec7da06247d6fea5b8e7a9272d14b86d.tar.bz2 | |
GHC: Update devel to 7.4.1
Updating the formula to install GHC 7.4.1 for --devel, despite the fact thats
the current stable release. But, for haskell-platform I am leaving GHC 7.0.4 as
the current default GHC version.
Closes #9945.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ghc.rb | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Library/Formula/ghc.rb b/Library/Formula/ghc.rb index 6b53c4370..cd86fba9c 100644 --- a/Library/Formula/ghc.rb +++ b/Library/Formula/ghc.rb @@ -12,13 +12,13 @@ class Ghc < Formula end devel do - version '7.2.2' + version '7.4.1' if ARGV.include? '--64bit' - url "http://www.haskell.org/ghc/dist/7.2.2/ghc-7.2.2-x86_64-apple-darwin.tar.bz2" - md5 '97c9dc221fcf9eb8635f05ba08eca0c9' + url "http://www.haskell.org/ghc/dist/7.4.1/ghc-7.4.1-x86_64-apple-darwin.tar.bz2" + md5 '04a572f72c25e9d8fcbd7e9363d276bf' else - url "http://www.haskell.org/ghc/dist/7.2.2/ghc-7.2.2-i386-apple-darwin.tar.bz2" - md5 '1084f44b0d9e5ea5d3bf9b699b6e3e35' + url "http://www.haskell.org/ghc/dist/7.4.1/ghc-7.4.1-i386-apple-darwin.tar.bz2" + md5 '80243578b243224800f217e5e3060836' end end @@ -27,7 +27,10 @@ class Ghc < Formula skip_clean ['bin', 'lib'] def options - [['--64bit', 'Install 64-bit version of GHC (experimental).']] + [ + ['--64bit', 'Install 64-bit version of GHC (experimental).'], + ['--devel', 'Install version 7.4.x'] + ] end def install |
