aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpanminus.rb
blob: 46fc86759ace7c102d72d37de05541f2503d6a79 (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.7029.tar.gz"
  sha256 "755e37c3ed21e0cea16ad39714e463ba9898083784c33361aec607f00523783d"

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

  def install
    bin.install "cpanm"
  end

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