2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 23:16:57 +00:00
|
|
|
|
2014-02-20 18:22:55 +00:00
|
|
|
class NpmRequirement < Requirement
|
2013-01-20 02:45:59 +00:00
|
|
|
fatal true
|
|
|
|
|
2012-06-27 03:38:24 +00:00
|
|
|
def modules_folder
|
|
|
|
"#{HOMEBREW_PREFIX}/lib/node_modules"
|
|
|
|
end
|
|
|
|
|
|
|
|
def message; <<-EOS.undent
|
2013-03-13 03:31:33 +00:00
|
|
|
Beginning with 0.8.0, this recipe now comes with npm.
|
2013-02-02 02:39:14 +00:00
|
|
|
It appears you already have npm installed at #{modules_folder}/npm.
|
2013-03-13 03:31:33 +00:00
|
|
|
To use the npm that comes with this recipe, first uninstall npm with
|
|
|
|
`npm uninstall npm -g`, then run this command again.
|
2013-02-02 02:39:14 +00:00
|
|
|
|
|
|
|
If you would like to keep your installation of npm instead of
|
2013-03-13 03:31:33 +00:00
|
|
|
using the one provided with homebrew, install the formula with
|
|
|
|
the `--without-npm` option.
|
2012-06-27 03:38:24 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2013-01-20 02:45:59 +00:00
|
|
|
satisfy :build_env => false do
|
2012-06-27 03:38:24 +00:00
|
|
|
begin
|
2013-02-19 14:43:27 +00:00
|
|
|
path = Pathname.new("#{modules_folder}/npm/bin/npm")
|
2013-01-31 20:43:31 +00:00
|
|
|
path.realpath.to_s.include?(HOMEBREW_CELLAR)
|
2013-02-18 23:35:35 +00:00
|
|
|
rescue Errno::ENOENT
|
2012-06-27 03:38:24 +00:00
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
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-02-20 18:22:55 +00:00
|
|
|
depends_on NpmRequirement => :recommended
|
2014-01-23 22:31:06 +00:00
|
|
|
depends_on :python
|
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
|
|
|
|
2013-04-28 22:03:35 +00:00
|
|
|
def install
|
2012-06-27 03:38:24 +00:00
|
|
|
args = %W{--prefix=#{prefix}}
|
2013-02-23 08:23:11 +00:00
|
|
|
|
2012-08-13 00:03:04 +00:00
|
|
|
args << "--debug" if build.include? 'enable-debug'
|
2014-02-13 13:00:41 +00:00
|
|
|
args << "--without-npm" if build.without? "npm"
|
2010-08-09 05:08:08 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-10 23:16:57 +00:00
|
|
|
system "make install"
|
2012-06-27 03:38:24 +00:00
|
|
|
|
2014-02-13 13:00:41 +00:00
|
|
|
if build.with? "npm"
|
2013-05-08 22:02:08 +00:00
|
|
|
(lib/"node_modules/npm/npmrc").write("prefix = #{npm_prefix}\n")
|
2013-11-17 20:49:43 +00:00
|
|
|
|
|
|
|
# Link npm manpages
|
|
|
|
Pathname.glob("#{lib}/node_modules/npm/man/*").each do |man|
|
|
|
|
dir = send(man.basename)
|
2014-03-19 02:00:51 +00:00
|
|
|
man.children.each { |file| dir.install_symlink(file) }
|
2013-11-17 20:49:43 +00:00
|
|
|
end
|
2014-02-06 20:37:46 +00:00
|
|
|
|
2014-02-13 12:59:22 +00:00
|
|
|
if build.with? "completion"
|
|
|
|
bash_completion.install_symlink \
|
|
|
|
lib/"node_modules/npm/lib/utils/completion.sh" => "npm"
|
|
|
|
end
|
2012-06-27 03:38:24 +00:00
|
|
|
end
|
2009-10-10 23:16:57 +00:00
|
|
|
end
|
2010-12-28 11:11:21 +00:00
|
|
|
|
2012-06-27 03:38:24 +00:00
|
|
|
def npm_prefix
|
2013-07-16 19:46:02 +00:00
|
|
|
d = "#{HOMEBREW_PREFIX}/share/npm"
|
|
|
|
if File.directory? d
|
|
|
|
d
|
|
|
|
else
|
|
|
|
HOMEBREW_PREFIX.to_s
|
|
|
|
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:
|
|
|
|
#{npm_prefix}/lib/node_modules
|
|
|
|
end
|
|
|
|
elsif not ENV['PATH'].split(':').include? "#{npm_prefix}/bin"; <<-end.undent
|
|
|
|
Probably you should amend your PATH to include npm-installed binaries:
|
|
|
|
#{npm_prefix}/bin
|
|
|
|
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
|
|
|
|
end
|
2009-10-10 23:16:57 +00:00
|
|
|
end
|