diff options
| -rw-r--r-- | Library/Formula/v8.rb | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb index 611bd2bc4..978b5d2e4 100644 --- a/Library/Formula/v8.rb +++ b/Library/Formula/v8.rb @@ -2,15 +2,23 @@ require 'formula' require 'hardware' class V8 <Formula - head 'git://github.com/v8/v8.git' + 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}", 'mode=release', 'snapshot=on', "arch=#{arch}", 'sample=shell' - system 'scons', "-j #{Hardware.processor_count}", 'mode=release', 'snapshot=on', "arch=#{arch}", 'library=shared' + + 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.*']) |
