summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/jstorm/package.py
blob: 49e9405c1a43848a7668b215d947e370c2c25beb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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 Jstorm(Package):
    """
    JStorm is an enterprise fast and stable streaming process engine.
    """

    homepage = "https://github.com/alibaba/jstorm"
    url = "https://github.com/alibaba/jstorm/releases/download/2.4.0/jstorm-2.4.0.tgz"

    license("Apache-2.0")

    version("2.4.0", sha256="8a3965cb51ff95395a40e8d9fd83f12b0aad15c2726c74a796d8085cccc9d69f")

    def install(self, spec, prefix):
        install_tree(".", prefix)