blob: e2ce6bb26c7dab24f3c7023cfda07ce8671fd648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Kiwi <Formula
url 'https://github.com/visionmedia/kiwi/tarball/0.3.1'
homepage 'https://github.com/visionmedia/kiwi'
md5 '2ae655e5dc3861f3852d7592b7ab9533'
depends_on 'rlwrap' => :recommended
def install
inreplace "Makefile", "/usr/local", prefix
system "make install"
end
def caveats
<<-EOS.undent
By default, installs libraries to:
~/.node_libraries
EOS
end
end
|