diff options
author | Kenny Shen <qoelet@users.noreply.github.com> | 2021-11-01 17:54:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 10:54:25 +0100 |
commit | 3253faf01eaee4f3e18d3452dc1697035a1eff50 (patch) | |
tree | 47971fb5443cf81664f706e7cb55aaddd484ae22 /var | |
parent | d73b1b9742a77b36f0d319e7e9cdb461d7d6bbf9 (diff) | |
download | spack-3253faf01eaee4f3e18d3452dc1697035a1eff50.tar.gz spack-3253faf01eaee4f3e18d3452dc1697035a1eff50.tar.bz2 spack-3253faf01eaee4f3e18d3452dc1697035a1eff50.tar.xz spack-3253faf01eaee4f3e18d3452dc1697035a1eff50.zip |
cpp-argparse: new package (#27107)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/cpp-argparse/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cpp-argparse/package.py b/var/spack/repos/builtin/packages/cpp-argparse/package.py new file mode 100644 index 0000000000..6dd378d61f --- /dev/null +++ b/var/spack/repos/builtin/packages/cpp-argparse/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2021 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 CppArgparse(CMakePackage): + """Argument Parser for Modern C++""" + homepage = "https://github.com/p-ranav/argparse/" + url = "https://github.com/p-ranav/argparse/archive/refs/tags/v2.2.tar.gz" + + maintainers = ['qoelet'] + + version('2.2', sha256='f0fc6ab7e70ac24856c160f44ebb0dd79dc1f7f4a614ee2810d42bb73799872b') |