aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpanminus.rb
blob: f2fa3745c8d72ac6aeebee50a3885a9100b234b9 (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.7024.tar.gz"
  sha1 "9b905ecd906a5afe7340035475d11c15a54ebd35"

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

  def install
    bin.install "cpanm"
  end

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