blob: 8a228be0a0281269a6435cd7b7e4af1dfbd2a11a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | require "formula"
class Cpansearch < Formula
  homepage "https://github.com/c9s/cpansearch"
  url "https://github.com/c9s/cpansearch/archive/0.2.tar.gz"
  sha1 "302638f78f2b09630cabd3975c38d5fc591c43e7"
  head "https://github.com/c9s/cpansearch.git"
  depends_on "pkg-config" => :build
  depends_on "glib"
  def install
    system "make"
    bin.install "cpans"
  end
  def caveats; <<-EOS.undent
    For usage instructions:
        more #{opt_prefix}/README.md
    EOS
  end
end
 |