summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/stinger/package.py
blob: c62cb163b86b518631429c1fce69ea7b67561d7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2023 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.package 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)