homebrew-core/Formula/kiwi.rb
Benny Wong 36b907226f Updating kiwi formula with the right MD5. Issue Homebrew/homebrew#1310
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-04 07:51:45 -07:00

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