diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-09 10:15:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 21:15:52 -0500 |
commit | a0ba89d84ac282bea93eca973404dbd640d787d2 (patch) | |
tree | a8663c9eb16f4a629e101ea9f590301a35d7f4a7 | |
parent | a12ced781c91b1d553a7e4e93d3df258cabbe63e (diff) | |
download | spack-a0ba89d84ac282bea93eca973404dbd640d787d2.tar.gz spack-a0ba89d84ac282bea93eca973404dbd640d787d2.tar.bz2 spack-a0ba89d84ac282bea93eca973404dbd640d787d2.tar.xz spack-a0ba89d84ac282bea93eca973404dbd640d787d2.zip |
Add new package: guacamole-client (#18546)
-rw-r--r-- | var/spack/repos/builtin/packages/guacamole-client/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/guacamole-client/package.py b/var/spack/repos/builtin/packages/guacamole-client/package.py new file mode 100644 index 0000000000..0db64509a7 --- /dev/null +++ b/var/spack/repos/builtin/packages/guacamole-client/package.py @@ -0,0 +1,18 @@ +# 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 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" + + version('1.2.0', sha256='2327368a32e61cf82032311be79ded4e5eefbc59ac9fb6e0a054b4f49168843e') + + depends_on('java@8', type=('build', 'run')) |