36b907226f
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
437 B
Ruby
21 lines
437 B
Ruby
require 'formula'
|
|
|
|
class Kiwi <Formula
|
|
url 'http://github.com/visionmedia/kiwi/tarball/0.3.0'
|
|
homepage 'http://github.com/visionmedia/kiwi'
|
|
md5 '84e64c488a69395038d863a1e8767571'
|
|
|
|
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
|