homebrew-core/Formula/cpansearch.rb

24 lines
487 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/archive/0.1.1.tar.gz'
sha1 '8ffab37023886f3c1e287de574001ff720c8b1e5'
2012-04-19 02:37:43 +00:00
head 'https://github.com/c9s/cpansearch.git'
2013-02-10 06:28:09 +00:00
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system "make"
bin.install "cpans"
end
def caveats; <<-EOS.undent
For usage instructions:
2012-11-25 19:42:57 +00:00
more #{opt_prefix}/README.md
EOS
end
end