Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Update node to v0.6.0 #8460

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Library/Formula/node.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
require 'formula'

class Node < Formula
url 'http://nodejs.org/dist/node-v0.4.12.tar.gz'
url 'http://nodejs.org/dist/v0.6.0/node-v0.6.0.tar.gz'
head 'https://github.com/joyent/node.git'
homepage 'http://nodejs.org/'
md5 'a6375eaa43db5356bf443e25b828ae16'
md5 'c05f2dadd4d82c0d72dbc116e82cfc0e'

# Leopard OpenSSL is not new enough, so use our keg-only one
depends_on 'openssl' if MacOS.leopard?
Expand All @@ -27,6 +27,10 @@ def install
args = ["--prefix=#{prefix}"]
args << "--debug" if ARGV.include? '--debug'

# v0.6.0 appears to have a bug in parallel building
# so we'll -j1 it for now
ENV.deparallelize

system "./configure", *args
system "make install"
end
Expand Down