summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/rabbitmq/package.py
blob: 6bfbe65946b0d07d91d6411292587b8a139936c0 (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
# 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 Rabbitmq(Package):
    """
    RabbitMQ is lightweight and easy to deploy on premises and in the cloud.
    It supports multiple messaging protocols. RabbitMQ can be deployed in
    distributed and federated configurations to meet high-scale,
    high-availability requirements.
    """

    homepage = "https://www.rabbitmq.com/"
    url = "http://www.rabbitmq.com/releases/rabbitmq-server/v3.6.15/rabbitmq-server-generic-unix-3.6.15.tar.xz"

    license("BSD-2-Clause")

    version("3.6.15", sha256="04e6a291642f80e87fc892d5e8ea309fb3fab85ebb64a79a70dfe6c6cfde36fb")

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