mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
libssh: new package
libssh2 and libssh both implement SSH and provide a library API for apps. Both support SSH, SFTP, auth, channels etc. Both are 25K-30K lines of code. [libssh2 vs libssh - A comparison] http://www.libssh2.org/libssh2-vs-libssh.html [Peter: add sha256 hash, fix typo in help text] Signed-off-by: Scott Fan <fancp2007@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
a754bb8758
commit
aa01679744
36
package/libssh/libssh.mk
Normal file
36
package/libssh/libssh.mk
Normal file
@@ -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))
|
||||
Reference in New Issue
Block a user