diff options
author | Jacob Merson <mersoj@rpi.edu> | 2020-12-07 03:53:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 09:53:34 +0100 |
commit | 1f73c87157ea87efbc0ba93e6e4003c8754a6df7 (patch) | |
tree | 6c41f9d7f47e6f5873d55fd3dbfbe162670fe010 | |
parent | 89c54ff01e76480dae90fb64a2fc6c4674f63ecf (diff) | |
download | spack-1f73c87157ea87efbc0ba93e6e4003c8754a6df7.tar.gz spack-1f73c87157ea87efbc0ba93e6e4003c8754a6df7.tar.bz2 spack-1f73c87157ea87efbc0ba93e6e4003c8754a6df7.tar.xz spack-1f73c87157ea87efbc0ba93e6e4003c8754a6df7.zip |
ccls: new package at v0.20201025 (#20251)
-rw-r--r-- | var/spack/repos/builtin/packages/ccls/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ccls/package.py b/var/spack/repos/builtin/packages/ccls/package.py new file mode 100644 index 0000000000..74099d8eee --- /dev/null +++ b/var/spack/repos/builtin/packages/ccls/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Ccls(CMakePackage): + """C/C++ language server""" + + homepage = "https://github.com/MaskRay/ccls" + git = "https://github.com/MaskRay/ccls.git" + url = "https://github.com/MaskRay/ccls/archive/0.20201025.tar.gz" + + maintainers = ['jacobmerson'] + + version('0.20201025', sha256='1470797b2c1a466e2d8a069efd807aac6fefdef8a556e1edf2d44f370c949221') + + variant('build_type', default='Release', description='CMake build type', + values=('Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel')) + + depends_on("cmake@3.8:", type="build") + depends_on('llvm@7:') + depends_on('rapidjson') |