cpansearch

Ncurses enabled cpan search tool.
Via atr000.
This commit is contained in:
Adam Vandenberg 2010-10-20 20:53:21 -07:00
parent f5430d95f4
commit d55f3c534e

19
Formula/cpansearch.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Cpansearch <Formula
head 'http://github.com/c9s/cpansearch.git', :using => :git
homepage 'http://github.com/c9s/cpansearch'
depends_on 'glib'
def install
system "make"
bin.install "cpans"
end
def caveats; <<-EOS.undent
For usage instructions:
$ more #{prefix}/README.md
EOS
end
end