2010-03-24 21:45:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class HaskellPlatform < Formula
|
2010-03-24 21:45:48 +00:00
|
|
|
homepage 'http://hackage.haskell.org/platform/'
|
2012-06-05 18:03:15 +00:00
|
|
|
url 'http://lambda.haskell.org/platform/download/2012.2.0.0/haskell-platform-2012.2.0.0.tar.gz'
|
|
|
|
sha1 '91405b8d864d35d90effb9aac3ad9309ea6d86a7'
|
2010-03-24 21:45:48 +00:00
|
|
|
|
|
|
|
depends_on 'ghc'
|
|
|
|
|
|
|
|
def install
|
|
|
|
# libdir doesn't work if passed to configure, needs to be passed to make install
|
2011-06-20 04:00:38 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--enable-unsupported-ghc-version"
|
2010-03-24 21:45:48 +00:00
|
|
|
system %Q(EXTRA_CONFIGURE_OPTS="--libdir=#{lib}/ghc" make install)
|
|
|
|
end
|
|
|
|
|
2010-07-26 00:27:18 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Run `cabal update` to initialize the package list.
|
|
|
|
|
2011-12-23 00:28:34 +00:00
|
|
|
If you are replacing a previous version of haskell-platform, you may want
|
|
|
|
to unregister packages belonging to the old version. You can find broken
|
|
|
|
packages using:
|
|
|
|
ghc-pkg check --simple-output
|
|
|
|
You can uninstall them using:
|
|
|
|
ghc-pkg check --simple-output | xargs -n 1 ghc-pkg unregister --force
|
2010-07-26 00:27:18 +00:00
|
|
|
EOS
|
2010-03-24 21:45:48 +00:00
|
|
|
end
|
|
|
|
end
|