summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/guacamole-client/package.py
blob: ec4f1b3c4e88e9b6ec231d5775ab87ecef53cdf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 GuacamoleClient(MavenPackage):
    """Apache Guacamole is a clientless remote desktop gateway. It
    supports standard protocols like VNC, RDP, and SSH."""

    homepage = "https://guacamole.apache.org/"
    url = "https://github.com/apache/guacamole-client/archive/1.2.0.tar.gz"

    license("Apache-2.0")

    version("1.2.0", sha256="2327368a32e61cf82032311be79ded4e5eefbc59ac9fb6e0a054b4f49168843e")

    depends_on("java@8", type=("build", "run"))