diff options
author | darmac <xiaojun2@hisilicon.com> | 2019-12-14 02:51:30 +0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-12-13 12:51:30 -0600 |
commit | 3344bb0a967c4217f6fa1d701b2c4dfb89d578aa (patch) | |
tree | c22334b88e0e427f0e26aaa7a5f1f31e7d0a245a | |
parent | 2520806df263c0137617bc2449e3c46178e9515c (diff) | |
download | spack-3344bb0a967c4217f6fa1d701b2c4dfb89d578aa.tar.gz spack-3344bb0a967c4217f6fa1d701b2c4dfb89d578aa.tar.bz2 spack-3344bb0a967c4217f6fa1d701b2c4dfb89d578aa.tar.xz spack-3344bb0a967c4217f6fa1d701b2c4dfb89d578aa.zip |
add new package : alluxio (#14143)
-rw-r--r-- | var/spack/repos/builtin/packages/alluxio/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/alluxio/package.py b/var/spack/repos/builtin/packages/alluxio/package.py new file mode 100644 index 0000000000..4bfd0a41c9 --- /dev/null +++ b/var/spack/repos/builtin/packages/alluxio/package.py @@ -0,0 +1,23 @@ +# 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 Alluxio(Package): + """ + Alluxio (formerly known as Tachyon) is a virtual distributed storage + system. It bridges the gap between computation frameworks and storage + systems, enabling computation applications to connect to numerous + storage systems through a common interface. + """ + + homepage = "https://github.com/Alluxio/alluxio" + url = "https://github.com/Alluxio/alluxio/archive/v2.1.0.tar.gz" + + version('2.1.0', sha256='c8b5b7848488e0ac10b093eea02ef05fa822250669d184291cc51b2f8aac253e') + + def install(self, spec, prefix): + install_tree('.', prefix) |