summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/aml/package.py
diff options
context:
space:
mode:
authorValentin Reis <fre@freux.fr>2019-05-30 16:01:28 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2019-05-30 16:01:28 -0500
commit0b5ccd22dad0615efbb2a300e819836a8513f544 (patch)
treeb099849f48fb847e80e93cb2504bf34dec4a19f0 /var/spack/repos/builtin/packages/aml/package.py
parentf089b9b05306be7e45924866085f168d171d34f3 (diff)
downloadspack-0b5ccd22dad0615efbb2a300e819836a8513f544.tar.gz
spack-0b5ccd22dad0615efbb2a300e819836a8513f544.tar.bz2
spack-0b5ccd22dad0615efbb2a300e819836a8513f544.tar.xz
spack-0b5ccd22dad0615efbb2a300e819836a8513f544.zip
Adds the aml memory management library. (#11590)
AML is a collection of building blocks for explicit memory management on complex architectures. https://xgitlab.cels.anl.gov/argo/aml https://argo-aml.readthedocs.io/en/latest/
Diffstat (limited to 'var/spack/repos/builtin/packages/aml/package.py')
-rw-r--r--var/spack/repos/builtin/packages/aml/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/aml/package.py b/var/spack/repos/builtin/packages/aml/package.py
new file mode 100644
index 0000000000..8b3ebdb3aa
--- /dev/null
+++ b/var/spack/repos/builtin/packages/aml/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2019 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 Aml(AutotoolsPackage):
+ """AML: Building Blocks for Memory Management."""
+
+ homepage = "https://xgitlab.cels.anl.gov/argo/aml"
+ url = "https://www.mcs.anl.gov/research/projects/argo/downloads/aml-0.1.0.tar.gz"
+ version('0.1.0', 'f704397fe568bcb334ee0cbc4f9e066e')
+
+ depends_on('numactl')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')