n is TJ Holowaychuk's simple node binary manager

Closes Homebrew/homebrew#21734.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Terin Stock 2013-08-07 11:49:11 -07:00 committed by Adam Vandenberg
parent e9242e625e
commit bcd6c53749
1 changed files with 13 additions and 0 deletions

13
Formula/n.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class N < Formula
homepage 'https://github.com/visionmedia/n'
head 'https://github.com/visionmedia/n.git'
url 'https://github.com/visionmedia/n/archive/1.1.0.tar.gz'
sha1 '93c7661630310ca38627052be4df47f89285b099'
def install
bin.mkdir
system "make", "PREFIX=#{prefix}", "install"
end
end