1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
Source: bear
Priority: optional
Section: devel
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends:
cmake,
debhelper-compat (= 13),
libfmt-dev,
libgmock-dev,
libgrpc++-dev,
libgtest-dev,
libprotobuf-dev,
libspdlog-dev,
libsqlite3-dev,
nlohmann-json3-dev,
pkgconf,
protobuf-compiler-grpc
Standards-Version: 4.7.2
Homepage: https://github.com/rizsotto/Bear
Vcs-Browser: https://salsa.debian.org/sramacher/bear
Vcs-Git: https://salsa.debian.org/sramacher/bear.git
Package: bear
Architecture: any
Depends:
libear (= ${binary:Version}),
${shlibs:Depends},
${misc:Depends}
Description: generate compilation database for Clang tooling
Bear records the flags passed to the compiler for each translation unit and
stores them in a JSON file. This file can be used by Clang's tooling interface
and programs like clang-check to process a translation unit.
.
cmake supports the generation of JSON compilation databases out of the box.
For any other build system that does not support this, Bear can be used
instead to intercept the invocation of the compiler.
Package: libear
Section: libs
Architecture: any
Multi-Arch: same
Depends:
${shlibs:Depends},
${misc:Depends}
Description: generate compilation database for Clang tooling (wrapper library)
Bear records the flags passed to the compiler for each translation unit and
stores them in a JSON file. This file can be used by Clang's tooling interface
and programs like clang-check to process a translation unit.
.
cmake supports the generation of JSON compilation databases out of the box.
For any other build system that does not support this, Bear can be used
instead to intercept the invocation of the compiler.
.
This is the required library for wrapping system calls.
|