blob: 9bd27fa1764e5d17e46cc4e137e3cc847a3b1e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Node <Formula
url 'http://s3.amazonaws.com/four.livejournal/20091009/node-v0.1.14.tar.gz'
homepage 'http://nodejs.org/'
md5 '7f73e4ca88ded4a9b102fdd4f6d18adf'
def install
ENV.gcc_4_2
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|