2014-05-05 11:29:51 +00:00
|
|
|
require "formula"
|
2009-10-10 23:16:57 +00:00
|
|
|
|
2013-08-06 00:41:08 +00:00
|
|
|
# Note that x.even are stable releases, x.odd are devel releases
|
2011-03-10 05:11:03 +00:00
|
|
|
class Node < Formula
|
2014-05-05 11:29:51 +00:00
|
|
|
homepage "http://nodejs.org/"
|
|
|
|
url "http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz"
|
|
|
|
sha1 "ef08a75f6359a16e672cae684e0804ca7f4554b7"
|
2013-04-11 20:33:38 +00:00
|
|
|
|
2014-04-04 10:08:07 +00:00
|
|
|
bottle do
|
2014-05-05 15:02:14 +00:00
|
|
|
sha1 "22ea2a8408d8dacfa486b1badd42a70506f3aecc" => :mavericks
|
|
|
|
sha1 "943f78e9337ecb8158e579b12148db541beedaea" => :mountain_lion
|
|
|
|
sha1 "3548317dae53ecf767e530e4c27c9d2373cfb70b" => :lion
|
2014-04-04 10:08:07 +00:00
|
|
|
end
|
|
|
|
|
2013-04-11 20:33:38 +00:00
|
|
|
devel do
|
2014-05-05 11:29:51 +00:00
|
|
|
url "http://nodejs.org/dist/v0.11.13/node-v0.11.13.tar.gz"
|
|
|
|
sha1 "da4a9adb73978710566f643241b2c05fb8a97574"
|
2013-04-11 20:33:38 +00:00
|
|
|
end
|
2012-02-18 01:10:45 +00:00
|
|
|
|
2014-05-05 11:29:51 +00:00
|
|
|
head "https://github.com/joyent/node.git"
|
2012-01-26 05:00:23 +00:00
|
|
|
|
2014-05-05 11:29:51 +00:00
|
|
|
option "enable-debug", "Build with debugger hooks"
|
|
|
|
option "without-npm", "npm will not be installed"
|
|
|
|
option "without-completion", "npm bash completion will not be installed"
|
2013-02-23 08:23:11 +00:00
|
|
|
|
2014-04-04 10:55:59 +00:00
|
|
|
depends_on :python => :build
|
2012-08-13 00:03:04 +00:00
|
|
|
|
2014-01-23 22:31:06 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
2013-12-16 02:50:45 +00:00
|
|
|
end
|
2013-04-24 20:18:51 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
resource "npm" do
|
2014-05-05 11:29:51 +00:00
|
|
|
url "http://registry.npmjs.org/npm/-/npm-1.4.9.tgz"
|
|
|
|
sha1 "29094f675dad69fc5ea24960a81c7abbfca5ce01"
|
2014-04-02 13:51:43 +00:00
|
|
|
end
|
2013-02-23 08:23:11 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
def install
|
|
|
|
args = %W{--prefix=#{prefix} --without-npm}
|
2014-05-05 11:29:51 +00:00
|
|
|
args << "--debug" if build.include? "enable-debug"
|
2010-08-09 05:08:08 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2014-04-02 13:51:43 +00:00
|
|
|
system "make", "install"
|
|
|
|
|
|
|
|
resource("npm").stage libexec/"npm" if build.with? "npm"
|
|
|
|
end
|
2012-06-27 03:38:24 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
def post_install
|
|
|
|
return if build.without? "npm"
|
2013-11-17 20:49:43 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
node_modules = HOMEBREW_PREFIX/"lib/node_modules"
|
|
|
|
node_modules.mkpath
|
|
|
|
cp_r libexec/"npm", node_modules
|
2014-02-06 20:37:46 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
npm_root = node_modules/"npm"
|
|
|
|
npmrc = npm_root/"npmrc"
|
2014-04-04 10:56:18 +00:00
|
|
|
npmrc.atomic_write("prefix = #{HOMEBREW_PREFIX}\n")
|
2014-04-02 13:51:43 +00:00
|
|
|
|
|
|
|
npm_root.cd { system "make", "install" }
|
2014-06-03 12:48:09 +00:00
|
|
|
system "#{HOMEBREW_PREFIX}/bin/npm", "update", "npm", "-g",
|
|
|
|
"--prefix", HOMEBREW_PREFIX
|
2014-04-02 13:51:43 +00:00
|
|
|
|
|
|
|
Pathname.glob(npm_root/"man/*") do |man|
|
2014-04-04 10:56:18 +00:00
|
|
|
man.children.each do |file|
|
2014-05-05 11:29:51 +00:00
|
|
|
ln_sf file, "#{HOMEBREW_PREFIX}/share/man/#{man.basename}"
|
2014-04-04 10:56:18 +00:00
|
|
|
end
|
2012-06-27 03:38:24 +00:00
|
|
|
end
|
2010-12-28 11:11:21 +00:00
|
|
|
|
2014-04-02 13:51:43 +00:00
|
|
|
if build.with? "completion"
|
2014-04-06 17:12:14 +00:00
|
|
|
bash_completion.install_symlink \
|
|
|
|
npm_root/"lib/utils/completion.sh" => "npm"
|
2013-07-16 19:46:02 +00:00
|
|
|
end
|
2012-06-27 03:38:24 +00:00
|
|
|
end
|
2011-12-02 03:19:47 +00:00
|
|
|
|
2012-06-27 03:38:24 +00:00
|
|
|
def caveats
|
2014-02-13 13:00:41 +00:00
|
|
|
if build.without? "npm"; <<-end.undent
|
2013-07-16 19:46:02 +00:00
|
|
|
Homebrew has NOT installed npm. If you later install it, you should supplement
|
|
|
|
your NODE_PATH with the npm module folder:
|
2014-04-02 13:51:43 +00:00
|
|
|
#{HOMEBREW_PREFIX}/lib/node_modules
|
2013-07-16 19:46:02 +00:00
|
|
|
end
|
2012-06-27 03:38:24 +00:00
|
|
|
end
|
|
|
|
end
|
2014-02-05 00:52:09 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
path = testpath/"test.js"
|
|
|
|
path.write "console.log('hello');"
|
|
|
|
|
|
|
|
output = `#{bin}/node #{path}`.strip
|
|
|
|
assert_equal "hello", output
|
|
|
|
assert_equal 0, $?.exitstatus
|
2014-04-02 13:51:43 +00:00
|
|
|
|
|
|
|
system "#{HOMEBREW_PREFIX}/bin/npm", "install", "npm" if build.with? "npm"
|
2014-02-05 00:52:09 +00:00
|
|
|
end
|
2009-10-10 23:16:57 +00:00
|
|
|
end
|