62 lines
1.6 KiB
Ruby
62 lines
1.6 KiB
Ruby
class Bear < Formula
|
|
include Language::Python::Shebang
|
|
|
|
desc "Generate compilation database for clang tooling"
|
|
homepage "https://github.com/rizsotto/Bear"
|
|
url "https://github.com/rizsotto/Bear/archive/3.0.11.tar.gz"
|
|
sha256 "3f426b5b22cab1ed6146aaba1dd612cd387b7298915ca58a72386bc8c1c9d9da"
|
|
license "GPL-3.0-or-later"
|
|
head "https://github.com/rizsotto/Bear.git"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "2d85f8fbec91f38c750d61b0428f7d22283dc53d727e25d793a3811d6eae3baa"
|
|
sha256 big_sur: "0ecf2e67ee914f3d12fb0adeb28c2883241b91fedb54cc6539a07893028ca288"
|
|
sha256 catalina: "fe2b7085f03135c89716a928344400e7369e017183cd5dddc6add6e8e396ad2e"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "fmt"
|
|
depends_on "grpc"
|
|
depends_on macos: :catalina
|
|
depends_on "nlohmann-json"
|
|
depends_on "python@3.9"
|
|
depends_on "spdlog"
|
|
depends_on "sqlite"
|
|
|
|
uses_from_macos "llvm" => :test
|
|
|
|
on_linux do
|
|
depends_on "gcc"
|
|
end
|
|
|
|
fails_with gcc: "5" # needs C++17
|
|
|
|
def install
|
|
args = std_cmake_args + %w[
|
|
-DENABLE_UNIT_TESTS=OFF
|
|
-DENABLE_FUNC_TESTS=OFF
|
|
]
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "all"
|
|
system "make", "install"
|
|
end
|
|
|
|
rewrite_shebang detected_python_shebang, bin/"bear"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
int main() {
|
|
printf("hello, world!\\n");
|
|
return 0;
|
|
}
|
|
EOS
|
|
system "#{bin}/bear", "--", "clang", "test.c"
|
|
assert_predicate testpath/"compile_commands.json", :exist?
|
|
end
|
|
end
|