blob: ab4cfb62fe582b5a0184a39ba820ff2b97058302 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2013-2022 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.package import *
class RRapidjsonr(RPackage):
"""'Rapidjson' C++ Header Files.
Provides JSON parsing capability through the 'Rapidjson' 'C++' header-only
library."""
cran = "rapidjsonr"
version("1.2.0", sha256="62c94fcdcf5d0fbdfa2f6168affe526bf547c37c16d94e2e1b78d7bf608eed1f")
depends_on("gmake", type="build")
|