2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 23:16:57 +00:00
|
|
|
|
|
|
|
class Node <Formula
|
2010-08-20 09:36:18 +00:00
|
|
|
url 'http://nodejs.org/dist/node-v0.2.0.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/'
|
2010-08-20 09:36:18 +00:00
|
|
|
md5 '99a6dacc44b3f9c6ec376ccb446dd0b8'
|
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
|
|
|
|
end
|