2009-10-15 08:07:12 +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
|
2012-01-26 05:00:23 +00:00
|
|
|
homepage 'http://nodejs.org/'
|
2014-02-19 07:05:00 +00:00
|
|
|
url 'http://nodejs.org/dist/v0.10.26/node-v0.10.26.tar.gz'
|
|
|
|
sha1 '2340ec2dce1794f1ca1c685b56840dd515a271b2'
|
2013-04-11 20:33:38 +00:00
|
|
|
|
2014-04-04 10:08:07 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "0db92b18d10cb7505d7c885058e337aeb5e9741c" => :mavericks
|
|
|
|
sha1 "b48b83e92cdb8b064620c7fef409b37a2ae90e67" => :mountain_lion
|
|
|
|
sha1 "ecd7b384658ad1a54a74174d07dcffc3aa5ddc92" => :lion
|
|
|
|
end
|
|
|
|
|
2013-04-11 20:33:38 +00:00
|
|
|
devel do
|
2014-03-12 18:39:21 +00:00
|
|
|
url 'http://nodejs.org/dist/v0.11.12/node-v0.11.12.tar.gz'
|
|
|
|
sha1 'd991057af05dd70feb2126469ce279a2fe869e86'
|
2013-04-11 20:33:38 +00:00
|
|
|
end
|
2012-02-18 01:10:45 +00:00
|
|
|
|
2012-01-26 05:00:23 +00:00
|
|
|
head 'https://github.com/joyent/node.git'
|
|
|
|
|
2012-08-13 00:03:04 +00:00
|
|
|
option 'enable-debug', 'Build with debugger hooks'
|
2012-06-27 03:38:24 +00:00
|
|
|
option 'without-npm', 'npm will not be installed'
|
2014-02-13 12:59:22 +00:00
|
|
|
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
|
|
|
|
url "http://registry.npmjs.org/npm/-/npm-1.4.6.tgz"
|
|
|
|
sha1 "0e151bce38e72cf2206a6299fa5164123f04256e"
|
|
|
|
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}
|
2012-08-13 00:03:04 +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" }
|
|
|
|
system "#{HOMEBREW_PREFIX}/bin/npm", "update", "npm", "-g"
|
|
|
|
|
|
|
|
Pathname.glob(npm_root/"man/*") do |man|
|
|
|
|
dir = send(man.basename)
|
2014-04-04 10:56:18 +00:00
|
|
|
man.children.each do |file|
|
|
|
|
dir.install_symlink(file)
|
|
|
|
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
|