aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpanminus.rb
blob: 3a096b645c4e33ff4b4bf0e025ed454ef126767a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Cpanminus < Formula
  homepage "https://github.com/miyagawa/cpanminus"
  url "https://github.com/miyagawa/cpanminus/archive/1.7031.tar.gz"
  sha256 "7ff36a42aa46146cbe423f4dd4f2c0d8bd57c0e9968cf05651fac0f47ac82e98"

  head "https://github.com/miyagawa/cpanminus.git"

  def install
    bin.install "cpanm"
  end

  test do
    system "#{bin}/cpanm", "-V"
  end
end