homebrew-core/Formula/cpansearch.rb

20 lines
349 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cpansearch < Formula
head 'https://github.com/c9s/cpansearch.git', :using => :git
homepage 'https://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