diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2013-12-17 18:41:48 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-01-01 22:34:35 +0100 |
commit | b2e8e2ff0badc5ade340cf08a7112b54967b3dab (patch) | |
tree | 77d06d07a476fd6077567f02798f254808cc41c9 /meta-oe | |
parent | 773f7f1a1cc292ff98d668da1a486c025d15faf5 (diff) | |
download | meta-openembedded-b2e8e2ff0badc5ade340cf08a7112b54967b3dab.tar.gz |
libssh: Integrate package
Commit based on:
https://raw.github.com/tworaz/oe-tworaz/master/meta-jlime/recipes-support/libssh/libssh_0.5.2.bb
Updated version to latest.
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/libssh/libssh_0.5.5.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_0.5.5.bb b/meta-oe/recipes-support/libssh/libssh_0.5.5.bb new file mode 100644 index 000000000..fa251193d --- /dev/null +++ b/meta-oe/recipes-support/libssh/libssh_0.5.5.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol" | ||
2 | HOMEPAGE = "http://www.libssh.org" | ||
3 | SECTION = "libs" | ||
4 | |||
5 | DEPENDS = "zlib openssl libgcrypt" | ||
6 | |||
7 | LICENSE = "LGPLv2.1" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=388a4fb1dea8ceae0be78ba9b01fc139" | ||
9 | |||
10 | SRC_URI = "git://git.libssh.org/projects/libssh.git" | ||
11 | SRCREV = "43914a5f07702fe292a968322d5ff2627e0431db" | ||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | OECMAKE_BUILDPATH = "${S}/build" | ||
15 | OECMAKE_SOURCEPATH = "${S}" | ||
16 | EXTRA_OECMAKE = " \ | ||
17 | -DWITH_GCRYPT=1 \ | ||
18 | -DWITH_PCAP=1 \ | ||
19 | -DWITH_SFTP=1 \ | ||
20 | -DWITH_ZLIB=1 \ | ||
21 | " | ||
22 | EXTRA_OEMAKE = "-C ${OECMAKE_BUILDPATH}" | ||
23 | |||
24 | inherit cmake | ||
25 | |||
26 | do_configure_prepend () { | ||
27 | # Disable building of examples | ||
28 | sed -i -e '/add_subdirectory(examples)/s/^/#DONOTWANT/' CMakeLists.txt \ | ||
29 | || bb_fatal "Failed to disable examples" | ||
30 | } | ||