summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-04-27 23:55:07 +0800
committerGitHub <noreply@github.com>2020-04-27 10:55:07 -0500
commit5938499be7ffff509a031c6a103c87455ce0318a (patch)
treedd9495299193dd403e9d08e5f454f551cc1fb1a5
parent81b5475f8e6045d22298df191786c54bdbbbde13 (diff)
downloadspack-5938499be7ffff509a031c6a103c87455ce0318a.tar.gz
spack-5938499be7ffff509a031c6a103c87455ce0318a.tar.bz2
spack-5938499be7ffff509a031c6a103c87455ce0318a.tar.xz
spack-5938499be7ffff509a031c6a103c87455ce0318a.zip
Add new package: stinger (#16316)
-rw-r--r--var/spack/repos/builtin/packages/stinger/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/stinger/package.py b/var/spack/repos/builtin/packages/stinger/package.py
new file mode 100644
index 0000000000..fe78dc015c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/stinger/package.py
@@ -0,0 +1,26 @@
+# 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 Stinger(CMakePackage):
+ """The STINGER in-memory graph store and dynamic graph analysis
+ platform. Millions to billions of vertices and edges at thousands
+ to millions of updates per second."""
+
+ homepage = "http://www.stingergraph.com/"
+ git = "https://github.com/stingergraph/stinger.git"
+
+ version('master', branch='master')
+
+ parallel = False
+
+ def install(self, spec, prefix):
+ with working_dir(self.build_directory):
+ install_tree('./bin', prefix.bin)
+ install_tree('./lib', prefix.lib)
+ install_tree('./include', prefix.include)
+ install_tree('./share', prefix.share)