97 lines
3.5 KiB
Ruby
97 lines
3.5 KiB
Ruby
class Cloc < Formula
|
|
desc "Statistics utility to count lines of code"
|
|
homepage "https://github.com/AlDanial/cloc/"
|
|
url "https://github.com/AlDanial/cloc/archive/1.88.tar.gz"
|
|
sha256 "e85c2d1b3ec389d892955cf20b3fa5c797e81136e231d9a09e4f4c62e272f8cd"
|
|
license "GPL-2.0-or-later"
|
|
head "https://github.com/AlDanial/cloc.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9f1cc1669e19c4a9a539f0c8aaa91dccf74572a6ccb38948c3d60efe0c966ed6" => :big_sur
|
|
sha256 "f287c5bccd7c70cd25a17eaa235b392c6b3f27da6a9d4c47d5b0cbd45608dc84" => :catalina
|
|
sha256 "eda8d2e68c995503592bc9b2ec5e49fb30e93464df512d20ba45c08d0a9e8886" => :mojave
|
|
sha256 "24d26f59347952a7469fdb10830486a0f34b5c11884f5c4da05d34a858c8bd20" => :high_sierra
|
|
end
|
|
|
|
resource "Regexp::Common" do
|
|
url "https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL/Regexp-Common-2017060201.tar.gz"
|
|
sha256 "ee07853aee06f310e040b6bf1a0199a18d81896d3219b9b35c9630d0eb69089b"
|
|
end
|
|
|
|
resource "Algorithm::Diff" do
|
|
url "https://cpan.metacpan.org/authors/id/T/TY/TYEMQ/Algorithm-Diff-1.1903.tar.gz"
|
|
sha256 "30e84ac4b31d40b66293f7b1221331c5a50561a39d580d85004d9c1fff991751"
|
|
end
|
|
|
|
resource "Parallel::ForkManager" do
|
|
url "https://cpan.metacpan.org/authors/id/Y/YA/YANICK/Parallel-ForkManager-2.02.tar.gz"
|
|
sha256 "c1b2970a8bb666c3de7caac4a8f4dbcc043ab819bbc337692ec7bf27adae4404"
|
|
end
|
|
|
|
resource "Sub::Quote" do
|
|
url "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Sub-Quote-2.006006.tar.gz"
|
|
sha256 "6e4e2af42388fa6d2609e0e82417de7cc6be47223f576592c656c73c7524d89d"
|
|
end
|
|
|
|
resource "Moo::Role" do
|
|
url "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Moo-2.004000.tar.gz"
|
|
sha256 "323240d000394cf38ec42e865b05cb8928f625c82c9391cd2cdc72b33c51b834"
|
|
end
|
|
|
|
resource "Module::Runtime" do
|
|
url "https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.016.tar.gz"
|
|
sha256 "68302ec646833547d410be28e09676db75006f4aa58a11f3bdb44ffe99f0f024"
|
|
end
|
|
|
|
resource "Role::Tiny" do
|
|
url "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Role-Tiny-2.001004.tar.gz"
|
|
sha256 "92ba5712850a74102c93c942eb6e7f62f7a4f8f483734ed289d08b324c281687"
|
|
end
|
|
|
|
resource "Devel::GlobalDestruction" do
|
|
on_linux do
|
|
url "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz"
|
|
sha256 "34b8a5f29991311468fe6913cadaba75fd5d2b0b3ee3bb41fe5b53efab9154ab"
|
|
end
|
|
end
|
|
|
|
resource "Sub::Exporter::Progressive" do
|
|
on_linux do
|
|
url "https://cpan.metacpan.org/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz"
|
|
sha256 "d535b7954d64da1ac1305b1fadf98202769e3599376854b2ced90c382beac056"
|
|
end
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
|
|
|
|
# These are shipped as standard with OS X/macOS' default Perl, but
|
|
# because upstream has chosen to use "#!/usr/bin/env perl" cloc will
|
|
# use whichever Perl is in the PATH, which isn't guaranteed to include
|
|
# these modules. Vendor them to be safe.
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
system "make", "-C", "Unix", "prefix=#{libexec}", "install"
|
|
bin.install libexec/"bin/cloc"
|
|
bin.env_script_all_files(libexec/"bin", PERL5LIB: ENV["PERL5LIB"])
|
|
man1.install libexec/"share/man/man1/cloc.1"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
int main(void) {
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
assert_match "1,C,0,0,4", shell_output("#{bin}/cloc --csv .")
|
|
end
|
|
end
|