aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/v8.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/v8.rb')
-rw-r--r--Library/Formula/v8.rb17
1 files changed, 8 insertions, 9 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb
index d92edc352..80fbe7642 100644
--- a/Library/Formula/v8.rb
+++ b/Library/Formula/v8.rb
@@ -9,15 +9,14 @@ class V8 <Formula
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"
+ 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.*']