aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/node.rb
blob: 38cd54e0137bc1ebcac886081b8709cc1acc11d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
  skip_clean :all

  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