summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libssh/libssh_0.11.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/libssh/libssh_0.11.1.bb')
-rw-r--r--meta-oe/recipes-support/libssh/libssh_0.11.1.bb50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_0.11.1.bb b/meta-oe/recipes-support/libssh/libssh_0.11.1.bb
deleted file mode 100644
index 5f39c2d79c..0000000000
--- a/meta-oe/recipes-support/libssh/libssh_0.11.1.bb
+++ /dev/null
@@ -1,50 +0,0 @@
1SUMMARY = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol"
2HOMEPAGE = "http://www.libssh.org"
3SECTION = "libs"
4LICENSE = "LGPL-2.1-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=dabb4958b830e5df11d2b0ed8ea255a0"
6
7DEPENDS = "zlib openssl"
8
9SRC_URI = "git://git.libssh.org/projects/libssh.git;protocol=https;branch=stable-0.11 \
10 file://0001-tests-CMakeLists.txt-do-not-search-ssh-sshd-commands.patch \
11 file://run-ptest \
12 "
13
14SRC_URI:append:toolchain-clang = " file://0001-CompilerChecks.cmake-drop-Wunused-variable-flag.patch"
15
16SRCREV = "854795c654eda518ed6de6c1ebb4e2107fcb2e73"
17
18S = "${WORKDIR}/git"
19
20inherit cmake ptest
21
22PACKAGECONFIG ??= "gcrypt ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
23PACKAGECONFIG[gssapi] = "-DWITH_GSSAPI=1, -DWITH_GSSAPI=0, krb5, "
24PACKAGECONFIG[gcrypt] = "-DWITH_GCRYPT=1, -DWITH_GCRYPT=0, libgcrypt, "
25PACKAGECONFIG[tests] = "-DUNIT_TESTING=1, -DUNIT_TESTING=0, cmocka"
26
27ARM_INSTRUCTION_SET:armv5 = "arm"
28
29EXTRA_OECMAKE = " \
30 -DWITH_PCAP=1 \
31 -DWITH_SFTP=1 \
32 -DWITH_ZLIB=1 \
33 -DWITH_EXAMPLES=0 \
34 "
35
36do_compile:prepend () {
37 if [ ${PTEST_ENABLED} = "1" ]; then
38 sed -i -e 's|${B}|${PTEST_PATH}|g' ${B}/config.h
39 sed -i -e 's|${S}|${PTEST_PATH}|g' ${B}/config.h
40 fi
41}
42
43do_install_ptest () {
44 install -d ${D}${PTEST_PATH}/tests
45 cp -f ${B}/tests/unittests/torture_* ${D}${PTEST_PATH}/tests/
46 install -d ${D}${PTEST_PATH}/tests/unittests
47 cp -f ${S}/tests/unittests/hello*.sh ${D}${PTEST_PATH}/tests/unittests/
48}
49
50BBCLASSEXTEND = "native nativesdk"