25 lines
524 B
Ruby
Executable file
25 lines
524 B
Ruby
Executable file
require 'formula'
|
|
|
|
class Node <Formula
|
|
url 'http://nodejs.org/dist/node-v0.1.103.tar.gz'
|
|
head 'git://github.com/ry/node.git'
|
|
homepage 'http://nodejs.org/'
|
|
md5 '378307512e380e279969b0936e5ec5cc'
|
|
|
|
# Stripping breaks dynamic loading
|
|
def skip_clean? path
|
|
true
|
|
end
|
|
|
|
def install
|
|
fails_with_llvm
|
|
|
|
inreplace 'wscript' do |s|
|
|
s.gsub! '/usr/local', HOMEBREW_PREFIX
|
|
s.gsub! '/opt/local/lib', '/usr/lib'
|
|
end
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|