homebrew-core/Formula/cpansearch.rb
nibbles 2bits 9fea4b5332 cpansearch 0.1.1
Upgrade cpansearch to version 0.1.1

Fixes Homebrew/homebrew#11909.
Closes Homebrew/homebrew#11911.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-27 14:11:46 -05:00

22 lines
440 B
Ruby

require 'formula'
class Cpansearch < Formula
homepage 'https://github.com/c9s/cpansearch'
url 'https://github.com/c9s/cpansearch/tarball/0.1.1'
sha1 '8bfb303cf10b0cfcd09f42b4cb3c3911f37a47ee'
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