homebrew-core/Formula/npm.rb
Reid Burke 98b0e7e218 Install all of the npm man pages & fix "npm help"
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-30 09:02:17 -07:00

40 lines
920 B
Ruby

require 'formula'
class Npm <Formula
url 'http://github.com/isaacs/npm/tarball/v0.1.17'
head 'git://github.com/isaacs/npm.git'
homepage 'http://github.com/isaacs/npm'
md5 '0c5b90e2d0bd20c7b1d5a7ab90a835b3'
depends_on 'node'
def executable
<<-EOS
#!/bin/sh
exec "#{libexec}/cli.js" "$@"
EOS
end
def install
doc.install Dir["doc/*"]
prefix.install ["LICENSE", "README.md"]
# install all the required libs in libexec so `npm help` will work
libexec.install Dir["*"]
# add "npm-" prefix to man pages link them into the libexec man pages
man1.mkpath
Dir.chdir libexec+"man" do
Dir["*"].each do |file|
if file == "npm.1"
ln_s "#{libexec}/man/#{file}", man1
else
ln_s "#{libexec}/man/#{file}", "#{man1}/npm-#{file}"
end
end
end
# install the wrapper executable
(bin+"npm").write executable
end
end