aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-05-08 16:14:53 -0500
committerJack Nagel2014-05-08 16:14:53 -0500
commitd7474a37f4a1962d47e007433752aa96fc27ce0e (patch)
treee13a5156b5455d766e0877653d7b3017b2401fa1 /Library
parent81da3805f858ae01be65742202203848bc4d829b (diff)
downloadhomebrew-d7474a37f4a1962d47e007433752aa96fc27ce0e.tar.bz2
v8 3.25.30
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/v8.rb15
1 files changed, 6 insertions, 9 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb
index f1fc37011..81a64b748 100644
--- a/Library/Formula/v8.rb
+++ b/Library/Formula/v8.rb
@@ -7,8 +7,8 @@ require 'formula'
class V8 < Formula
homepage 'http://code.google.com/p/v8/'
- url 'https://github.com/v8/v8/archive/3.21.17.tar.gz'
- sha1 '762dacc85a896e23a311eaed1e182f535677f4d6'
+ url 'https://github.com/v8/v8/archive/3.25.30.tar.gz'
+ sha1 '207d0bb1dd5954fe691570e799b3c1e318741290'
option 'with-readline', 'Use readline instead of libedit'
@@ -16,15 +16,12 @@ class V8 < Formula
# https://github.com/Homebrew/homebrew/issues/21426
depends_on :macos => :lion
- # gyp currently depends on a full xcode install
- # https://code.google.com/p/gyp/issues/detail?id=292
- depends_on :xcode
- depends_on :python # gyp doesn't run under 2.6 or lower
+ depends_on :python => :build # gyp doesn't run under 2.6 or lower
depends_on 'readline' => :optional
resource 'gyp' do
- url 'http://gyp.googlecode.com/svn/trunk', :revision => 1685
- version '1685'
+ url 'http://gyp.googlecode.com/svn/trunk', :revision => 1831
+ version '1831'
end
def install
@@ -41,7 +38,7 @@ class V8 < Formula
prefix.install 'include'
cd 'out/native' do
lib.install Dir['lib*']
- bin.install 'd8', 'lineprocessor', 'preparser', 'process', 'shell' => 'v8'
+ bin.install 'd8', 'lineprocessor', 'process', 'shell' => 'v8'
bin.install Dir['mksnapshot.*']
end
end