summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorKeita Iwabuchi <iwabuchi1@llnl.gov>2020-02-14 22:34:32 -0800
committerGitHub <noreply@github.com>2020-02-15 00:34:32 -0600
commitb688bb549b984bae1b3b2bb2e774a05778f862c0 (patch)
tree5fde73d852baf1e44a83c9b4f2630ad08d5b930a /var
parentbaafa7ec84050662660d6bff2a53ff9ff1744f8f (diff)
downloadspack-b688bb549b984bae1b3b2bb2e774a05778f862c0.tar.gz
spack-b688bb549b984bae1b3b2bb2e774a05778f862c0.tar.bz2
spack-b688bb549b984bae1b3b2bb2e774a05778f862c0.tar.xz
spack-b688bb549b984bae1b3b2bb2e774a05778f862c0.zip
Add a new package: Metall (#14903)
* Add a new package: Metall * Fix errors in metall/package.py * Update var/spack/repos/builtin/packages/metall/package.py Change to https style URL Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update in metall/package.py. Change Metall to depend on Boost always * Update in metall/package.py. Change to install Boost with the default variants * Update metall/package.py. Removed a comment Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/metall/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/metall/package.py b/var/spack/repos/builtin/packages/metall/package.py
new file mode 100644
index 0000000000..cec7669ad2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/metall/package.py
@@ -0,0 +1,22 @@
+# 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)
+
+
+class Metall(CMakePackage):
+ """An allocator for persistent memory"""
+
+ homepage = "https://github.com/LLNL/metall"
+ git = "https://github.com/LLNL/metall.git"
+
+ maintainers = ['KIwabuchi', 'rogerpearce', 'mayagokhale']
+
+ version('develop', branch='develop')
+
+ depends_on('boost@1.64:', type=('build', 'link'))
+
+ def cmake_args(self):
+ args = []
+ args.append('-DINSTALL_HEADER_ONLY=ON')
+ return args