summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMatheus Henrique <matheushmshenrique@gmail.com>2023-09-07 02:03:31 -0300
committerGitHub <noreply@github.com>2023-09-07 01:03:31 -0400
commitf9c06669cab4f61b1ee8f80c575104a7bac5d656 (patch)
treeff492e88b3e2c970b387d281cc975eacede6896c /var
parent11c6431c9a99a0e75ffe6af3a029fd4f1db541ae (diff)
downloadspack-f9c06669cab4f61b1ee8f80c575104a7bac5d656.tar.gz
spack-f9c06669cab4f61b1ee8f80c575104a7bac5d656.tar.bz2
spack-f9c06669cab4f61b1ee8f80c575104a7bac5d656.tar.xz
spack-f9c06669cab4f61b1ee8f80c575104a7bac5d656.zip
Add Figcone Package (#39804)
* Add Figcone Package * Fix the style * add url * fix style removing whitespace of a blanck line * remove versions
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/figcone/package.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/figcone/package.py b/var/spack/repos/builtin/packages/figcone/package.py
new file mode 100644
index 0000000000..43b0f1a1cf
--- /dev/null
+++ b/var/spack/repos/builtin/packages/figcone/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 Figcone(CMakePackage):
+ """figcone - is a C++17 library, providing a convenient declarative interface for configuration
+ parsers and built-in support for reading JSON, YAML, TOML, XML, INI and shoal config files."""
+
+ homepage = "https://github.com/kamchatka-volcano/figcone"
+ url = "https://github.com/kamchatka-volcano/figcone/archive/refs/tags/v2.4.9.tar.gz"
+
+ version("2.4.9", sha256="735399e849621a4923e71a50d5e2ba928d5dfa3b01e54d56e0bac8e5102b7697")