diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-11-04 02:26:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 12:26:54 -0600 |
commit | b7421c1476039b8b9b567025bab039069cc988e4 (patch) | |
tree | c13852d851980e837de5b92d5bec386c6624da4e | |
parent | 6492b9a84ee1137f18b361998c16f018a6ba40cb (diff) | |
download | spack-b7421c1476039b8b9b567025bab039069cc988e4.tar.gz spack-b7421c1476039b8b9b567025bab039069cc988e4.tar.bz2 spack-b7421c1476039b8b9b567025bab039069cc988e4.tar.xz spack-b7421c1476039b8b9b567025bab039069cc988e4.zip |
Add new package: libdatrie (#19708)
-rw-r--r-- | var/spack/repos/builtin/packages/libdatrie/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libdatrie/package.py b/var/spack/repos/builtin/packages/libdatrie/package.py new file mode 100644 index 0000000000..35258168cc --- /dev/null +++ b/var/spack/repos/builtin/packages/libdatrie/package.py @@ -0,0 +1,19 @@ +# 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 Libdatrie(AutotoolsPackage): + """datrie is an implementation of double-array structure for representing + trie.""" + + homepage = "http://linux.thai.net/projects/datrie" + url = "https://github.com/tlwg/libdatrie/releases/download/v0.2.12/libdatrie-0.2.12.tar.xz" + + version('0.2.12', sha256='452dcc4d3a96c01f80f7c291b42be11863cd1554ff78b93e110becce6e00b149') + version('0.2.11', sha256='547c7bd2ab9e10ad65f3270cae8ca7027f52db9c30f7327d24354ad41a98e94b') + + depends_on('doxygen@1.8.8:', type='build') |