diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-04-29 22:57:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 09:57:38 -0500 |
commit | 890059c6354dc78993fb3519f47ef3eaff1d5bc7 (patch) | |
tree | fd612ab396f0fd571f68f7ec34a69305039d1bf4 | |
parent | 35b9901fa0732c0552e8ad6b9cf7ac0b131fa130 (diff) | |
download | spack-890059c6354dc78993fb3519f47ef3eaff1d5bc7.tar.gz spack-890059c6354dc78993fb3519f47ef3eaff1d5bc7.tar.bz2 spack-890059c6354dc78993fb3519f47ef3eaff1d5bc7.tar.xz spack-890059c6354dc78993fb3519f47ef3eaff1d5bc7.zip |
Add new package: libconfuse (#16368)
-rw-r--r-- | var/spack/repos/builtin/packages/libconfuse/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libconfuse/package.py b/var/spack/repos/builtin/packages/libconfuse/package.py new file mode 100644 index 0000000000..eedbaec83a --- /dev/null +++ b/var/spack/repos/builtin/packages/libconfuse/package.py @@ -0,0 +1,21 @@ +# 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 Libconfuse(AutotoolsPackage): + """Small configuration file parser library for C.""" + + homepage = "https://github.com/martinh/libconfuse" + url = "https://github.com/martinh/libconfuse/archive/v3.2.2.tar.gz" + + version('3.2.2', sha256='2cf7e032980aff8f488efba61510dc3fb95e9a4b9183f985dea457a5651b0e2c') + version('3.2.1', sha256='2eff8e3c300c4ed1d67fdb13f9d31a72a68e31874b4640db15334305bc40cebd') + + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') |