diff options
author | Neil Flood <neilflood@fastmail.fm> | 2018-11-23 04:45:17 +1000 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-11-22 12:45:17 -0600 |
commit | b6e664846acce6d586045f622b8c8c95583e2f1b (patch) | |
tree | 5fedd250d735c903ce863960f014410c68224774 /var | |
parent | 0f6f3ece951622dde405985e783f378558860942 (diff) | |
download | spack-b6e664846acce6d586045f622b8c8c95583e2f1b.tar.gz spack-b6e664846acce6d586045f622b8c8c95583e2f1b.tar.bz2 spack-b6e664846acce6d586045f622b8c8c95583e2f1b.tar.xz spack-b6e664846acce6d586045f622b8c8c95583e2f1b.zip |
qjson: new package (#9925)
Diffstat (limited to 'var')
-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') |