aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/v8.rb
blob: 978b5d2e45efc24ef292d1f4374dd4ac3c0466ef (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
require 'formula'
require 'hardware'

class V8 <Formula
  head 'http://v8.googlecode.com/svn/trunk/'
  homepage 'http://code.google.com/p/v8/'

  depends_on 'scons'

  def install
    arch = Hardware.is_64_bit? ? 'x64' : 'ia32'

    system "scons",
            "-j #{Hardware.processor_count}",
            "arch=#{arch}",
            "mode=release",
            "snapshot=on",
            "library=shared",
            "visibility=default",
            "console=readline",
            "sample=shell"

    include.install(Dir['include/*'])
    lib.install(Dir['libv8.*'])

    mv('shell', 'v8')
    bin.install('v8')
  end
end