homebrew-core/Formula/cpansearch.rb

23 lines
429 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cpansearch < Formula
homepage 'https://github.com/c9s/cpansearch'
url 'https://github.com/c9s/cpansearch/tarball/0.1'
md5 '470acb92617d77d7c9809effa3edde6d'
2012-04-19 02:37:43 +00:00
head 'https://github.com/c9s/cpansearch.git'
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