45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
class Scc < Formula
|
|
desc "Fast and accurate code counter with complexity and COCOMO estimates"
|
|
homepage "https://github.com/boyter/scc/"
|
|
url "https://github.com/boyter/scc/archive/v3.0.0.tar.gz"
|
|
sha256 "01b903e27add5180f5000b649ce6e5088fa2112e080bfca1d61b1832a84a0645"
|
|
license any_of: ["MIT", "Unlicense"]
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "d5c2674defbf49b886c8fb4b192e838ffd4b3d45b01efeb384d61ff1c3b71a41"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "3c4d0faf74445889e647a4366f428dfada194b66be43bcae45e8493b21d02187"
|
|
sha256 cellar: :any_skip_relocation, monterey: "5f66fbe2ae3df4f9c77993a95edccb0c85336e9db030e2f782fcdb6eea8246f5"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "e55821dfc18b02de3be5dec72881c65085ffa0b5a446179b86a151db5780577c"
|
|
sha256 cellar: :any_skip_relocation, catalina: "8f425e7b1f10563d69e459bb5ce07e5cf87512c4eb0923acb2618e0b0f1184f8"
|
|
sha256 cellar: :any_skip_relocation, mojave: "81f89e5d3ba8358b052378b2c68bab24ade5d75ec8561b2e2b16b7de065c8d56"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "6444f4306b4998d2900fe528333b630b8ac92a94c0c9c5ce7c33d51a556e428f"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", *std_go_args
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
int main(void) {
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
expected_output = <<~EOS
|
|
Language,Lines,Code,Comments,Blanks,Complexity,Bytes
|
|
C,4,4,0,0,0,50
|
|
EOS
|
|
|
|
assert_match expected_output, shell_output("#{bin}/scc -fcsv test.c")
|
|
end
|
|
end
|