2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-07-30 05:21:03 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
class Bear(CMakePackage):
|
2016-08-10 16:50:00 +08:00
|
|
|
"""Bear is a tool that generates a compilation database for clang tooling
|
|
|
|
from non-cmake build systems."""
|
2015-07-30 05:21:03 +08:00
|
|
|
homepage = "https://github.com/rizsotto/Bear"
|
|
|
|
url = "https://github.com/rizsotto/Bear/archive/2.0.4.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.2.0', sha256='6bd61a6d64a24a61eab17e7f2950e688820c72635e1cf7ea8ea7bf9482f3b612')
|
|
|
|
version('2.0.4', sha256='33ea117b09068aa2cd59c0f0f7535ad82c5ee473133779f1cc20f6f99793a63e')
|
2015-07-30 05:21:03 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
depends_on('python')
|
|
|
|
depends_on('cmake@2.8:', type='build')
|