aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ghc.rb
blob: f6a5a3b711d75b19624f6b4ace9ec49f14e1f50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
require 'formula'

class Ghc < Formula
  homepage 'http://haskell.org/ghc/'
  version '7.0.4'
  if ARGV.include? '--64bit'
    url "http://www.haskell.org/ghc/dist/7.0.4/ghc-7.0.4-x86_64-apple-darwin.tar.bz2"
    md5 'af89d3d2ca6e9b23384baacb7d8161dd'
  else
    url "http://www.haskell.org/ghc/dist/7.0.4/ghc-7.0.4-i386-apple-darwin.tar.bz2"
    md5 'ce297e783d113cf1547386703d1b1061'
  end

  devel do
    version '7.4.1'
    if ARGV.include? '--64bit'
      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.4.1/ghc-7.4.1-i386-apple-darwin.tar.bz2"
      md5 '80243578b243224800f217e5e3060836'
    end
  end

  # Avoid stripping the Haskell binaries & libraries.
  # See: http://hackage.haskell.org/trac/ghc/ticket/2458
  skip_clean ['bin', 'lib']

  def options
    [['--64bit', 'Install 64-bit version of GHC (experimental).']]
  end

  def install
    if ARGV.build_devel?
      opoo "The current version of haskell-platform will NOT work with this version of GHC!"
    end
    if ARGV.include? '--64bit'
      if Hardware.is_64_bit?
        opoo "The x86_64 version is experimental!"
      else
        onoe "The x86_64 version is only for 64-bit hardware."
        exit 1
      end
    end

    system "./configure --prefix=#{prefix}"
    system "make install"
  end

  def caveats; <<-EOS.undent
    The 32-bit version of GHC is installed by default, as the x84_64 version is
    labelled experimental. Override with `--64bit`.

    This brew is for GHC only; you might also be interested in haskell-platform.
    EOS
  end
end