blob: 3c234ad2e663703f89c86570177988dd6d5dd1f7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | 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
 |