diff options
| author | Fabrice Coulon <fabrice.coulon@axis.com> | 2014-10-03 11:21:11 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-10-06 01:07:52 +0200 |
| commit | 0186f9817848332a43016669e848d2696dacc7da (patch) | |
| tree | 65145cc6b57a90946a57a76cf4fa2b64002a3319 | |
| parent | f41b4a19670b267b70e63aee1faa33a919f85252 (diff) | |
| download | meta-openembedded-0186f9817848332a43016669e848d2696dacc7da.tar.gz | |
libssh2: add recipe file
A separate commit on curl adds a PACKAGECONFIG option within the
curl recipe in OE-Core to use libssh2 in curl, the user can enable
libssh2 via conf/local.conf or custom distro configuration, this will
pull in libssh2, which is not used by default.
Signed-off-by: Fabrice Coulon <fabrice.coulon@axis.com>
Signed-off-by: Olof Johansson <olof.johansson@axis.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/libssh2/libssh2_1.4.3.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libssh2/libssh2_1.4.3.bb b/meta-oe/recipes-support/libssh2/libssh2_1.4.3.bb new file mode 100644 index 0000000000..b53766333b --- /dev/null +++ b/meta-oe/recipes-support/libssh2/libssh2_1.4.3.bb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SUMMARY = "A client-side C library implementing the SSH2 protocol" | ||
| 2 | HOMEPAGE = "http://www.libssh2.org/" | ||
| 3 | SECTION = "libs" | ||
| 4 | |||
| 5 | DEPENDS = "zlib openssl" | ||
| 6 | |||
| 7 | LICENSE = "BSD" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=d00afe44f336a79a2ca7e1681ce14509" | ||
| 9 | |||
| 10 | SRC_URI = "http://www.libssh2.org/download/${BP}.tar.gz" | ||
| 11 | SRC_URI[md5sum] = "071004c60c5d6f90354ad1b701013a0b" | ||
| 12 | SRC_URI[sha256sum] = "eac6f85f9df9db2e6386906a6227eb2cd7b3245739561cad7d6dc1d5d021b96d" | ||
| 13 | |||
| 14 | inherit autotools pkgconfig | ||
| 15 | |||
| 16 | EXTRA_OECONF += "--with-openssl \ | ||
| 17 | --with-libz \ | ||
| 18 | " | ||
