summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
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