summaryrefslogtreecommitdiffstats
path: root/package/libssh
diff options
context:
space:
mode:
Diffstat (limited to 'package/libssh')
-rw-r--r--package/libssh/Config.in11
-rw-r--r--package/libssh/libssh.hash4
-rw-r--r--package/libssh/libssh.mk36
3 files changed, 51 insertions, 0 deletions
diff --git a/package/libssh/Config.in b/package/libssh/Config.in
new file mode 100644
index 0000000000..080ad18e70
--- /dev/null
+++ b/package/libssh/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBSSH
+ bool "libssh"
+ # Either OpenSSL or libgcrypt are mandatory
+ select BR2_PACKAGE_LIBGCRYPT if !BR2_PACKAGE_OPENSSL
+ help
+ libssh is a multiplatform C library implementing the SSHv2
+ and SSHv1 protocol on client and server side. With libssh,
+ you can remotely execute programs, transfer files, use a
+ secure and transparent tunnel for your remote applications.
+
+ http://www.libssh.org/
diff --git a/package/libssh/libssh.hash b/package/libssh/libssh.hash
new file mode 100644
index 0000000000..473ced36c7
--- /dev/null
+++ b/package/libssh/libssh.hash
@@ -0,0 +1,4 @@
+# from https://red.libssh.org/projects/libssh/files/
+md5 bffc9dc548c3bae3a3afc5ac1654b272 libssh-0.7.1.tar.xz
+# Locally calculated
+sha256 2fc7ccf96d3263cbd8ab520118cb94d9a2e11714c61e22b3f761fc5352fd046d libssh-0.7.1.tar.xz
diff --git a/package/libssh/libssh.mk b/package/libssh/libssh.mk
new file mode 100644
index 0000000000..39cff50073
--- /dev/null
+++ b/package/libssh/libssh.mk
@@ -0,0 +1,36 @@
+################################################################################
+#
+## libssh
+#
+#################################################################################
+
+LIBSSH_VERSION = 0.7.1
+LIBSSH_SOURCE = libssh-$(LIBSSH_VERSION).tar.xz
+LIBSSH_SITE = https://red.libssh.org/attachments/download/154
+LIBSSH_LICENSE = LGPLv2.1
+LIBSSH_LICENSE_FILES = COPYING
+LIBSSH_INSTALL_STAGING = YES
+LIBSSH_SUPPORTS_IN_SOURCE_BUILD = NO
+LIBSSH_CONF_OPTS = \
+ -DWITH_STACK_PROTECTOR=OFF \
+ -DWITH_SERVER=OFF \
+ -DWITH_EXAMPLES=OFF
+
+ifeq ($(BR2_PACKAGE_ZLIB),y)
+LIBSSH_CONF_OPTS += -DWITH_ZLIB=ON
+LIBSSH_DEPENDENCIES += zlib
+else
+LIBSSH_CONF_OPTS += -DWITH_ZLIB=OFF
+endif
+
+ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
+LIBSSH_CONF_OPTS += -DWITH_GCRYPT=ON
+LIBSSH_DEPENDENCIES += libgcrypt
+else
+LIBSSH_CONF_OPTS += -DWITH_GCRYPT=OFF
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+LIBSSH_DEPENDENCIES += openssl
+endif
+endif
+
+$(eval $(cmake-package))
OpenPOWER on IntegriCloud