summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-05-17 04:50:24 +0800
committerGitHub <noreply@github.com>2020-05-16 15:50:24 -0500
commitb6498c44af0f8e655f02b2699ce3d76fabaec2e7 (patch)
tree8edea8a2ce2043bae91275239fa4722e772bb236 /var
parent2ebadbc267ffb4e2c175bdd7ceea9eb20e92254f (diff)
downloadspack-b6498c44af0f8e655f02b2699ce3d76fabaec2e7.tar.gz
spack-b6498c44af0f8e655f02b2699ce3d76fabaec2e7.tar.bz2
spack-b6498c44af0f8e655f02b2699ce3d76fabaec2e7.tar.xz
spack-b6498c44af0f8e655f02b2699ce3d76fabaec2e7.zip
Add new package: guacamole-server (#16680)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/guacamole-server/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/guacamole-server/package.py b/var/spack/repos/builtin/packages/guacamole-server/package.py
new file mode 100644
index 0000000000..ea08a63639
--- /dev/null
+++ b/var/spack/repos/builtin/packages/guacamole-server/package.py
@@ -0,0 +1,26 @@
+# 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 GuacamoleServer(AutotoolsPackage):
+ """The guacamole-server package is a set of software which forms the
+ basis of the Guacamole stack. It consists of guacd, libguac, and
+ several protocol support libraries."""
+
+ homepage = "http://guacamole.apache.org/"
+ url = "https://github.com/apache/guacamole-server/archive/1.1.0.tar.gz"
+
+ version('1.1.0', sha256='d0f0c66ebfa7a4fd6689ae5240f21797b5177945a042388b691b15b8bd5c81a8')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('cairo')
+ depends_on('libjpeg')
+ depends_on('libpng')
+ depends_on('uuid')