diff options
| author | Mike McQuaid | 2013-05-28 20:24:59 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2013-05-29 10:20:49 +0100 |
| commit | 28981100af3c0ca218ede4dcfadcef40635e5e6c (patch) | |
| tree | 213a96d2d1f56a3667f483acefc5a8b20a123651 /Library/Formula | |
| parent | 6322545ba5907f27f917ef644a27593447e0f5b1 (diff) | |
| download | homebrew-28981100af3c0ca218ede4dcfadcef40635e5e6c.tar.bz2 | |
haskell-platform 2013.2.0.0
Closes #20112.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/haskell-platform.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/haskell-platform.rb b/Library/Formula/haskell-platform.rb index ecb68c133..044ed72fc 100644 --- a/Library/Formula/haskell-platform.rb +++ b/Library/Formula/haskell-platform.rb @@ -2,14 +2,16 @@ require 'formula' class HaskellPlatform < Formula homepage 'http://hackage.haskell.org/platform/' - url 'http://lambda.haskell.org/platform/download/2012.4.0.0/haskell-platform-2012.4.0.0.tar.gz' - sha1 '7976508c50305969f64c721a1d095ae22efff8b7' + url 'http://lambda.haskell.org/platform/download/2013.2.0.0/haskell-platform-2013.2.0.0.tar.gz' + sha1 '8669bb5add1826c0523fb130c095fb8bf23a30ce' depends_on 'ghc' + conflicts_with 'cabal-install' + def install # libdir doesn't work if passed to configure, needs to be set in the environment - system "./configure", "--prefix=#{prefix}", "--enable-unsupported-ghc-version" + system "./configure", "--prefix=#{prefix}" ENV['EXTRA_CONFIGURE_OPTS'] = "--libdir=#{lib}/ghc" system "make install" end |
