15 lines
345 B
Ruby
15 lines
345 B
Ruby
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
|