aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/node.rb
diff options
context:
space:
mode:
authorShawn Jonnet2012-06-25 12:50:29 -0300
committerJack Nagel2012-06-25 18:50:03 -0500
commit01f8006729d622f44e2a0bf01211a8d2fd02c135 (patch)
tree5948480a108471c6097f2e500783c5c574baac2b /Library/Formula/node.rb
parentfc0b4b636a366db1d66db216db380d9c2a4c7a82 (diff)
downloadhomebrew-01f8006729d622f44e2a0bf01211a8d2fd02c135.tar.bz2
Node 0.8.0
Closes #13005. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/node.rb')
-rw-r--r--Library/Formula/node.rb16
1 files changed, 2 insertions, 14 deletions
diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb
index 52dc4f013..72efddc75 100644
--- a/Library/Formula/node.rb
+++ b/Library/Formula/node.rb
@@ -2,16 +2,11 @@ require 'formula'
class Node < Formula
homepage 'http://nodejs.org/'
- url 'http://nodejs.org/dist/v0.6.19/node-v0.6.19.tar.gz'
- sha1 'f6c5cfbadff4788ac3a95f8263a0c2f4e07444b6'
+ url 'http://nodejs.org/dist/v0.8.0/node-v0.8.0.tar.gz'
+ sha1 '5171fb46fbfee5ac7129c4b17207a3f35a1f57e8'
head 'https://github.com/joyent/node.git'
- devel do
- url 'http://nodejs.org/dist/v0.7.12/node-v0.7.12.tar.gz'
- sha1 'cb570abacbf4eb7e23c3d2620d00dd3080d9c19d'
- end
-
# Leopard OpenSSL is not new enough, so use our keg-only one
depends_on 'openssl' if MacOS.leopard?
@@ -27,13 +22,6 @@ class Node < Formula
end
def install
- unless ARGV.build_devel?
- inreplace 'wscript' do |s|
- s.gsub! '/usr/local', HOMEBREW_PREFIX
- s.gsub! '/opt/local/lib', '/usr/lib'
- end
- end
-
# Why skip npm install? Read https://github.com/mxcl/homebrew/pull/8784.
args = ["--prefix=#{prefix}", "--without-npm"]
args << "--debug" if ARGV.include? '--enable-debug'