diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-01-01 13:26:11 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-01-01 22:34:36 +0100 |
commit | 398e7f75bd0f55a7c76c0de627cfda16e82165fa (patch) | |
tree | 3ccb8ca0903950ade7f7468b53b111d8cb391d41 /meta-oe/recipes-support/libssh/libssh_git.bb | |
parent | b2e8e2ff0badc5ade340cf08a7112b54967b3dab (diff) | |
download | meta-openembedded-contrib-398e7f75bd0f55a7c76c0de627cfda16e82165fa.tar.gz |
libssh: Fix branch param and set PV in recipe
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libssh/libssh_git.bb')
-rw-r--r-- | meta-oe/recipes-support/libssh/libssh_git.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh/libssh_git.bb b/meta-oe/recipes-support/libssh/libssh_git.bb new file mode 100644 index 0000000000..73b9ec1f4e --- /dev/null +++ b/meta-oe/recipes-support/libssh/libssh_git.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Multiplatform C library implementing the SSHv2 and SSHv1 protocol" +HOMEPAGE = "http://www.libssh.org" +SECTION = "libs" + +DEPENDS = "zlib openssl libgcrypt" + +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=388a4fb1dea8ceae0be78ba9b01fc139" + +PV = "0.5.5+gitr${SRCPV}" +SRC_URI = "git://git.libssh.org/projects/libssh.git;branch=v0-5" +SRCREV = "43914a5f07702fe292a968322d5ff2627e0431db" +S = "${WORKDIR}/git" + +OECMAKE_BUILDPATH = "${S}/build" +OECMAKE_SOURCEPATH = "${S}" +EXTRA_OECMAKE = " \ + -DWITH_GCRYPT=1 \ + -DWITH_PCAP=1 \ + -DWITH_SFTP=1 \ + -DWITH_ZLIB=1 \ + " +EXTRA_OEMAKE = "-C ${OECMAKE_BUILDPATH}" + +inherit cmake + +do_configure_prepend () { + # Disable building of examples + sed -i -e '/add_subdirectory(examples)/s/^/#DONOTWANT/' CMakeLists.txt \ + || bb_fatal "Failed to disable examples" +} |