diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-07-12 10:47:21 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-24 14:30:16 +0200 |
commit | 957eef8f929295967cf19b6e269a32daa7ba8043 (patch) | |
tree | 1250c3f66ff4f9eaf757dd2159705b9b2dd60f9c /meta-oe/recipes-connectivity/mosh | |
parent | 7785873f736a4443b171100e42520c7aad96d348 (diff) | |
download | meta-openembedded-957eef8f929295967cf19b6e269a32daa7ba8043.tar.gz |
mosh: add new recipe for version 1.2.4
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/mosh')
-rw-r--r-- | meta-oe/recipes-connectivity/mosh/mosh_1.2.4.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/mosh/mosh_1.2.4.bb b/meta-oe/recipes-connectivity/mosh/mosh_1.2.4.bb new file mode 100644 index 000000000..c0d03c52f --- /dev/null +++ b/meta-oe/recipes-connectivity/mosh/mosh_1.2.4.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | # NOTE: mosh-server requires a UTF-8 locale, but there's no way to add | ||
2 | # an explicit dependency for this so you need to ensure this is in your | ||
3 | # image yourself when you install mosh-server. | ||
4 | |||
5 | SUMMARY = "Remote shell supporting roaming and high-latency connections" | ||
6 | DESCRIPTION = "Remote terminal application that allows roaming, supports \ | ||
7 | intermittent connectivity, and provides intelligent local echo and line \ | ||
8 | editing of user keystrokes. Mosh is a replacement for SSH. It's more \ | ||
9 | robust and responsive, especially over Wi-Fi, cellular, and \ | ||
10 | long-distance links." | ||
11 | HOMEPAGE = "http://mosh.mit.edu" | ||
12 | LICENSE = "GPLv3+" | ||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
14 | |||
15 | DEPENDS = "protobuf-native protobuf ncurses zlib libio-pty-perl openssl" | ||
16 | |||
17 | SRC_URI = "http://mosh.mit.edu/mosh-${PV}.tar.gz" | ||
18 | |||
19 | SRC_URI[md5sum] = "c2d918f4d91fdc32546e2e089f9281b2" | ||
20 | SRC_URI[sha256sum] = "e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46" | ||
21 | |||
22 | inherit autotools | ||
23 | |||
24 | PACKAGE_BEFORE_PN += "${PN}-server" | ||
25 | FILES_${PN}-server = "${bindir}/mosh-server" | ||
26 | |||
27 | # mosh uses SSH to authenticate and the client uses OpenSSH-specific features | ||
28 | RDEPENDS_${PN} += "openssh-ssh" | ||
29 | # The server seemed not to work with dropbear either | ||
30 | RDEPENDS_${PN}-server += "openssh-sshd" | ||
31 | |||