summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDr. Christian Tacke <58549698+ChristianTackeGSI@users.noreply.github.com>2023-03-23 22:48:24 +0100
committerGitHub <noreply@github.com>2023-03-23 17:48:24 -0400
commit2d9c913eb153d9091494a20817393659ee0ddb4c (patch)
tree64d559526ba70db4ef7eb315d50a42e4625354f3 /var
parentb0e54bc0ac479c14429d4e0efe4a45f8d8489aa9 (diff)
downloadspack-2d9c913eb153d9091494a20817393659ee0ddb4c.tar.gz
spack-2d9c913eb153d9091494a20817393659ee0ddb4c.tar.bz2
spack-2d9c913eb153d9091494a20817393659ee0ddb4c.tar.xz
spack-2d9c913eb153d9091494a20817393659ee0ddb4c.zip
faircmakemodules: Add new package (#36345)
Co-authored-by: Dennis Klein <d.klein@gsi.de>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/faircmakemodules/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/faircmakemodules/package.py b/var/spack/repos/builtin/packages/faircmakemodules/package.py
new file mode 100644
index 0000000000..13027f5a77
--- /dev/null
+++ b/var/spack/repos/builtin/packages/faircmakemodules/package.py
@@ -0,0 +1,22 @@
+# 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 Faircmakemodules(CMakePackage):
+ """CMake Modules developed in the context of various FAIR (https://www.gsi.de/en/researchaccelerators/fair) projects"""
+
+ homepage = "https://fairrootgroup.github.io/FairCMakeModules/latest/"
+ url = "https://github.com/FairRootGroup/FairCMakeModules/archive/refs/tags/v1.0.0.tar.gz"
+ git = "https://github.com/FairRootGroup/FairCMakeModules.git"
+ maintainers("dennisklein", "ChristianTackeGSI")
+
+ version("main", branch="main", get_full_repo=True)
+ version("1.0.0", sha256="ec60c31f38050c1173d512c58c684650db66736877c580936f7ecca33eeaf696")
+
+ generator("make", "ninja", default="ninja")
+
+ depends_on("cmake@3.15:", type="build")