bcd6c53749
n is TJ Holowaychuk's simple node binary manager Closes Homebrew/homebrew#21734. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
329 B
Ruby
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
|