2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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"
|
|
|
|
|
2017-03-02 03:37:47 +08:00
|
|
|
version('2.2.0', '87250cc3a9a697e7d1e8972253a35259')
|
2015-07-30 05:21:03 +08:00
|
|
|
version('2.0.4', 'fd8afb5e8e18f8737ba06f90bd77d011')
|
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
depends_on('python')
|
|
|
|
depends_on('cmake@2.8:', type='build')
|