summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libssh/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libssh/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libssh/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libssh/package.py b/var/spack/repos/builtin/packages/libssh/package.py
new file mode 100644
index 0000000000..511e2779a0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libssh/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2018 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 Libssh(CMakePackage):
+ """libssh: the SSH library"""
+
+ homepage = "https://www.libssh.org"
+ url = "https://red.libssh.org/attachments/download/218/libssh-0.7.5.tar.xz"
+
+ version('0.7.5', 'd3fc864208bf607ad87cdee836894feb')
+
+ depends_on('openssl')
+ depends_on('zlib')