blob: a22f4fee4c5c32ee25170cf47d3cd9c1bff0c589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Cloc < Formula
homepage 'http://cloc.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cloc/cloc/v1.60/cloc-1.60.pl'
sha1 'd002e85b7deb988e4f88eaf3f9697cf011ec0c8a'
def install
bin.install "cloc-#{version}.pl" => "cloc"
end
end
|