summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorBen Bergen <bergen@lanl.gov>2021-11-15 23:31:24 -0700
committerGitHub <noreply@github.com>2021-11-16 07:31:24 +0100
commit5a8271d0c692c0ba5c05fdf5ac29c43adb4b8dfd (patch)
tree3c75d5a0cb4fd59e78dc09589292b82e16d17cb3 /var
parent35bf91012f83f64faf528007cb0b775465218b80 (diff)
downloadspack-5a8271d0c692c0ba5c05fdf5ac29c43adb4b8dfd.tar.gz
spack-5a8271d0c692c0ba5c05fdf5ac29c43adb4b8dfd.tar.bz2
spack-5a8271d0c692c0ba5c05fdf5ac29c43adb4b8dfd.tar.xz
spack-5a8271d0c692c0ba5c05fdf5ac29c43adb4b8dfd.zip
lanl-cmake-modules: new package (#27447)
Several projects have not yet added modern CMake support. This package adds find_package support for some of these projects.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/lanl-cmake-modules/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lanl-cmake-modules/package.py b/var/spack/repos/builtin/packages/lanl-cmake-modules/package.py
new file mode 100644
index 0000000000..f037089e94
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lanl-cmake-modules/package.py
@@ -0,0 +1,17 @@
+# 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 LanlCmakeModules(CMakePackage):
+ '''CMake modules for projects that have not yet adopted modern CMake.
+ '''
+
+ maintainers = ['tuxfan']
+ homepage = 'https://tuxfan.github.io/lanl-cmake-modules'
+ git = 'https://github.com/tuxfan/lanl-cmake-modules.git'
+
+ version('develop', branch='develop')