2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 23:16:57 +00:00
|
|
|
|
|
|
|
class Node <Formula
|
2011-01-03 17:19:26 +00:00
|
|
|
url 'http://nodejs.org/dist/node-v0.2.6.tar.gz'
|
2009-12-20 12:47:19 +00:00
|
|
|
head 'git://github.com/ry/node.git'
|
2009-10-10 23:16:57 +00:00
|
|
|
homepage 'http://nodejs.org/'
|
2011-01-03 17:19:26 +00:00
|
|
|
md5 'b1c50ceb43bee1b221be210b7bc7a216'
|
2009-10-10 23:16:57 +00:00
|
|
|
|
2010-07-22 02:33:59 +00:00
|
|
|
# Stripping breaks dynamic loading
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2009-10-19 00:31:51 +00:00
|
|
|
|
2010-08-09 05:08:08 +00:00
|
|
|
def options
|
|
|
|
[["--debug", "Build with debugger hooks."]]
|
|
|
|
end
|
|
|
|
|
2009-10-10 23:16:57 +00:00
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm
|
2010-07-22 02:33:59 +00:00
|
|
|
|
2010-07-24 05:35:43 +00:00
|
|
|
inreplace 'wscript' do |s|
|
2010-03-06 07:40:55 +00:00
|
|
|
s.gsub! '/usr/local', HOMEBREW_PREFIX
|
|
|
|
s.gsub! '/opt/local/lib', '/usr/lib'
|
2010-02-19 15:56:52 +00:00
|
|
|
end
|
2010-07-22 02:33:59 +00:00
|
|
|
|
2010-08-09 05:08:08 +00:00
|
|
|
args = ["--prefix=#{prefix}"]
|
|
|
|
args << "--debug" if ARGV.include? '--debug'
|
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-10 23:16:57 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2010-12-28 11:11:21 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
"Please add #{HOMEBREW_PREFIX}/lib/node to your NODE_PATH environment variable to have node libraries picked up."
|
|
|
|
end
|
2009-10-10 23:16:57 +00:00
|
|
|
end
|