summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/jsoncpp/package.py
blob: 06945692c58a059bd979e2de873247ef156da927 (plain) (blame)
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
# Copyright 2013-2019 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 Jsoncpp(CMakePackage):
    """JsonCpp is a C++ library that allows manipulating JSON values,
    including serialization and deserialization to and from strings.
    It can also preserve existing comment in unserialization/serialization
    steps, making it a convenient format to store user input files."""

    homepage = "https://github.com/open-source-parsers/jsoncpp"
    url      = "https://github.com/open-source-parsers/jsoncpp/archive/1.7.3.tar.gz"

    version('1.7.3', 'aff6bfb5b81d9a28785429faa45839c5')

    variant('build_type', default='RelWithDebInfo',
            description='The build type to build',
            values=('Debug', 'Release', 'RelWithDebInfo',
                    'MinSizeRel', 'Coverage'))

    depends_on('cmake@3.1:', type='build')
    depends_on('python', type='test')

    def cmake_args(self):
        args = ['-DBUILD_SHARED_LIBS=ON']
        if self.run_tests:
            args.append('-DJSONCPP_WITH_TESTS=ON')
        else:
            args.append('-DJSONCPP_WITH_TESTS=OFF')
        return args