homebrew-core/Formula/kcov.rb
2019-03-09 15:38:42 +01:00

34 lines
1.1 KiB
Ruby

class Kcov < Formula
desc "Code coverage tester for compiled programs, Python, and shell scripts"
homepage "https://simonkagstrom.github.io/kcov/"
url "https://github.com/SimonKagstrom/kcov/archive/v36.tar.gz"
sha256 "29ccdde3bd44f14e0d7c88d709e1e5ff9b448e735538ae45ee08b73c19a2ea0b"
head "https://github.com/SimonKagstrom/kcov.git"
bottle do
cellar :any_skip_relocation
sha256 "eb5bc53867f7dc0ebb53216daf6b1ec62ee45036fa36d60ccfa03722644176ed" => :mojave
sha256 "e5c56807425593829fa59be83f58ba473cdde545216c06fdda54e7e59996f413" => :high_sierra
sha256 "75e27a93b88782772c9d54db0afcb079f5f1b3d89a6ab1e457306e269c2951a3" => :sierra
end
depends_on "cmake" => :build
depends_on "pkg-config" => :build
def install
mkdir "build" do
system "cmake", "-DSPECIFY_RPATH=ON", *std_cmake_args, ".."
system "make"
system "make", "install"
end
end
test do
(testpath/"hello.bash").write <<~EOS
#!/bin/bash
echo "Hello, world!"
EOS
system "#{bin}/kcov", testpath/"out", testpath/"hello.bash"
assert_predicate testpath/"out/hello.bash/coverage.json", :exist?
end
end