blob: e8f5eece117ddc32490669fac7454791b09a7e7b (
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
|
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')
system "install_name_tool -change libv8.dylib #{lib}/libv8.dylib #{bin+'v8'}"
end
end
|