diff options
author | Matthieu Dorier <mdorier@anl.gov> | 2020-03-16 07:33:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 08:33:42 +0100 |
commit | d24c64c9364780d69967c33f7af2bde126caff6e (patch) | |
tree | 223061fa541a5f446602c01117bf2de4ee228d36 | |
parent | 96a037adf7910b550784ec92e6c889ac093e3a97 (diff) | |
download | spack-d24c64c9364780d69967c33f7af2bde126caff6e.tar.gz spack-d24c64c9364780d69967c33f7af2bde126caff6e.tar.bz2 spack-d24c64c9364780d69967c33f7af2bde126caff6e.tar.xz spack-d24c64c9364780d69967c33f7af2bde126caff6e.zip |
unqlite: added package at v1.1.9 (#15501)
-rw-r--r-- | var/spack/repos/builtin/packages/unqlite/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/unqlite/package.py b/var/spack/repos/builtin/packages/unqlite/package.py new file mode 100644 index 0000000000..84c3b5575e --- /dev/null +++ b/var/spack/repos/builtin/packages/unqlite/package.py @@ -0,0 +1,18 @@ +# 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 Unqlite(CMakePackage): + """UnQLite is a in-process software library which implements a self-contained, + serverless, zero-configuration, transactional NoSQL database engine.""" + + homepage = "https://unqlite.org/" + url = "https://github.com/symisc/unqlite/archive/v1.1.9.tar.gz" + git = 'https://github.com/symisc/unqlite.git' + + version('master', branch='master') + version('1.1.9', sha256='33d5b5e7b2ca223942e77d31112d2e20512bc507808414451c8a98a7be5e15c0') |