diff options
-rw-r--r-- | var/spack/repos/builtin/packages/qjson/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/qjson/package.py b/var/spack/repos/builtin/packages/qjson/package.py new file mode 100644 index 0000000000..964c1a3279 --- /dev/null +++ b/var/spack/repos/builtin/packages/qjson/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2018 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 Qjson(CMakePackage): + """QJson is a Qt-based library that maps JSON data to QVariant + objects and vice versa.""" + + homepage = "http://qjson.sourceforge.net/" + url = "https://github.com/flavio/qjson/archive/0.9.0.tar.gz" + + version('0.9.0', '2846278bb5fc9aeacab80ac14b8ed48d') + + depends_on('qt') |