aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spidermonkey.rb
blob: 962fac5871e8a0607a85e3a516a879a260a3e716 (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
require 'formula'

class Spidermonkey <Formula  
  # There are no proper releases of spidermonkey. So pick a specific/constant
  # revision:  r35345
  url 'http://hg.mozilla.org/tracemonkey/archive/57a6ad20eae9.tar.gz'
  md5 '4a143399f69d6509bd980073096af6d4'

  version '1.9.2'

  homepage 'https://developer.mozilla.org/en/SpiderMonkey'

  head 'hg://http://hg.mozilla.org/tracemonkey'

  depends_on 'readline'
  depends_on 'autoconf213'

  def install

    if MACOS_VERSION == 10.5
      # aparently this flag causes the build to fail for ivanvc on 10.5 with a
      # penryn (core 2 duo) CPU. So lets be cautious here and remove it.
      # It might not be need with newer spidermonkeys anymore tho.
      ENV['CFLAGS'] = ENV['CFLAGS'].gsub(/-msse[^\s]+/, '')
    end

    Dir.chdir "js/src" do
      system "autoconf213"
      # Remove the broken *(for anyone but FF) install_name
      inreplace "config/rules.mk", "-install_name @executable_path/$(SHARED_LIBRARY) ", ""
    end

    FileUtils.mkdir "brew-build";

    Dir.chdir "brew-build" do
      system "../js/src/configure", "--prefix=#{prefix}",
                                    "--enable-readline"

      inreplace "js-config", /JS_CONFIG_LIBS=.*?$/, "JS_CONFIG_LIBS=''"

      # Can't do `make install` right off the bat sadly
      system "make"
      system "make install"

      # The `js` binary ins't installed. Lets do that too, eh?
      bin.install "shell/js"
    end

  end
end