homebrew-core/Formula/node.rb

36 lines
801 B
Ruby
Raw Normal View History

require 'formula'
class Node <Formula
url 'http://nodejs.org/dist/node-v0.1.98.tar.gz'
2009-12-20 12:47:19 +00:00
head 'git://github.com/ry/node.git'
homepage 'http://nodejs.org/'
md5 'd8a75cb5c18ce20e0206ced95a8c1544'
2009-12-12 16:24:04 +00:00
aka 'node.js'
def skip_clean? path
# TODO: at some point someone should tweak this so it only skips clean
# for the bits that break the build otherwise
true
end
def install
2010-03-13 04:15:58 +00:00
ENV.gcc_4_2
2010-03-06 07:40:55 +00:00
inreplace %w{wscript configure} do |s|
s.gsub! '/usr/local', HOMEBREW_PREFIX
s.gsub! '/opt/local/lib', '/usr/lib'
end
system "./configure", "--prefix=#{prefix}"
system "make install"
end
2010-03-13 04:15:58 +00:00
def caveats; <<-EOS.undent
If you:
brew install rlwrap
then you can:
rlwrap node-repl
for a nicer command-line interface.
EOS
end
end