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>
This commit is contained in:
parent
e9242e625e
commit
bcd6c53749
1 changed files with 13 additions and 0 deletions
13
Formula/n.rb
Normal file
13
Formula/n.rb
Normal 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
|
Loading…
Reference in a new issue