diff options
author | Matheus Henrique <matheushmshenrique@gmail.com> | 2023-09-06 01:38:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 00:38:03 -0400 |
commit | 81cfe39ae3322d4c6c7bdffcf5d6f48c1adf07e8 (patch) | |
tree | 22f8456332e029e48f46bd202313c3022693ab3d /var | |
parent | ed058fd21231d0987d6999064604f27ae3369ffc (diff) | |
download | spack-81cfe39ae3322d4c6c7bdffcf5d6f48c1adf07e8.tar.gz spack-81cfe39ae3322d4c6c7bdffcf5d6f48c1adf07e8.tar.bz2 spack-81cfe39ae3322d4c6c7bdffcf5d6f48c1adf07e8.tar.xz spack-81cfe39ae3322d4c6c7bdffcf5d6f48c1adf07e8.zip |
Add cmdlime package (#39835)
* Add cmdlime package
* remove the blank line at the end of file
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/cmdlime/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cmdlime/package.py b/var/spack/repos/builtin/packages/cmdlime/package.py new file mode 100644 index 0000000000..3f1045c8ce --- /dev/null +++ b/var/spack/repos/builtin/packages/cmdlime/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2023 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.package import * + + +class Cmdlime(CMakePackage): + """cmdlime is a C++17 header-only library for command line parsing that + provides a concise, declarative interface without many details to remember.""" + + homepage = "https://github.com/kamchatka-volcano/cmdlime" + url = "https://github.com/kamchatka-volcano/cmdlime/archive/refs/tags/v2.5.0.tar.gz" + + version("2.5.0", sha256="d5188d7f075142fcb546099a4ee2a967f8248109c0bee8c084e0e00f37603481") |