homebrew-core/Formula/n.rb
Terin Stock bcd6c53749 n 1.1.0
n is TJ Holowaychuk's simple node binary manager

Closes Homebrew/homebrew#21734.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-15 12:40:22 -07:00

13 lines
329 B
Ruby

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