2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 23:16:57 +00:00
|
|
|
|
2012-06-27 03:38:24 +00:00
|
|
|
class NpmNotInstalled < 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-01-23 22:31:06 +00:00
|
|
|
url 'http://nodejs.org/dist/v0.10.25/node-v0.10.25.tar.gz'
|
|
|
|
sha1 '1e330b4fbb6f7bb858a0b37d8573dd4956f40885'
|
2013-04-11 20:33:38 +00:00
|
|
|
|
|
|
|
devel do
|
2014-01-29 16:43:56 +00:00
|
|
|
url 'http://nodejs.org/dist/v0.11.11/node-v0.11.11.tar.gz'
|
|
|
|
sha1 '65b257ec6584bf339f06f58a8a02ba024e13f283'
|
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'
|
2013-02-23 08:23:11 +00:00
|
|
|
|
|
|
|
depends_on NpmNotInstalled unless build.without? 'npm'
|
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'
|
2012-06-27 03:38:24 +00:00
|
|
|
args << "--without-npm" if build.include? '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
|
|
|
|
2012-08-28 04:55:39 +00:00
|
|
|
unless build.include? 'without-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)
|
|
|
|
man.children.each do |file|
|
|
|
|
dir.install_symlink(file.relative_path_from(dir))
|
|
|
|
end
|
|
|
|
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
|
2013-07-16 19:46:02 +00:00
|
|
|
if build.include? 'without-npm' then <<-end.undent
|
|
|
|
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
|
2009-10-10 23:16:57 +00:00
|
|
|
end
|