From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wi0-x236.google.com ([2a00:1450:400c:c05::236]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1YL6RB-0007c2-OY for ptxdist@pengutronix.de; Tue, 10 Feb 2015 09:44:54 +0100 Received: by mail-wi0-f182.google.com with SMTP id n3so23333182wiv.3 for ; Tue, 10 Feb 2015 00:44:48 -0800 (PST) From: Oliver Graute Date: Tue, 10 Feb 2015 09:44:37 +0100 Message-Id: <1423557877-32478-1-git-send-email-oliver.graute@neuhaus.de> In-Reply-To: <1423551921-29670-1-git-send-email-oliver.graute@neuhaus.de> References: <1423551921-29670-1-git-send-email-oliver.graute@neuhaus.de> Subject: [ptxdist] [PATCHv2] mosh: added mosh package to ptxdist Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: Oliver Graute second try, thank you for feedback its my first contribution to ptxdist Signed-off-by: Oliver Graute --- rules/mosh.in | 17 ++++++++++++++++ rules/mosh.make | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 rules/mosh.in create mode 100644 rules/mosh.make diff --git a/rules/mosh.in b/rules/mosh.in new file mode 100644 index 0000000..d9cc583 --- /dev/null +++ b/rules/mosh.in @@ -0,0 +1,17 @@ +## SECTION=networking + +config MOSH + tristate + prompt "mosh" +select PROTOBUF + select NCURSES + select ZLIB + select OPENSSL + select OPENSSH if RUNTIME + select OPENSSH_SSH if RUNTIME + select OPENSSH_SSHD if RUNTIME + help + Remote terminal application that allows roaming, supports intermittent + connectivity, and provides intelligent local echo and line editing of + user keystrokes. Mosh is a replacement for SSH. It's more robust and + responsive, especially over Wi-Fi, cellular, and long-distance links. diff --git a/rules/mosh.make b/rules/mosh.make new file mode 100644 index 0000000..b96af5a --- /dev/null +++ b/rules/mosh.make @@ -0,0 +1,61 @@ +# -*-makefile-*- +# +# Copyright (C) 2015 Dr. Neuhaus Telekommunikation GmbH, Hamburg Germany, Oliver Graute +# +# See CREDITS for details about who has contributed to this project. +# +# For further information about the PTXdist project and license conditions +# see the README file. +# + +# +# We provide this package +# +PACKAGES-$(PTXCONF_MOSH) += mosh + +# +# Paths and names +# +MOSH_VERSION := 1.2.4 +MOSH_MD5 := c2d918f4d91fdc32546e2e089f9281b2 +MOSH := mosh-$(MOSH_VERSION) +MOSH_SUFFIX := tar.gz +MOSH_URL := https://mosh.mit.edu/$(MOSH).$(MOSH_SUFFIX) +MOSH_SOURCE := $(SRCDIR)/$(MOSH).$(MOSH_SUFFIX) +MOSH_DIR := $(BUILDDIR)/$(MOSH) +MOSH_LICENSE := GPLv3 + +# +# autoconf +# +MOSH_AUTOCONF := \ + $(CROSS_AUTOCONF_USR) \ + --enable-hardening \ + --enable-client \ + --enable-server \ + --disable-examples \ + --disable-completion \ + --without-utempter + +# ---------------------------------------------------------------------------- +# Target-Install +# ---------------------------------------------------------------------------- + +$(STATEDIR)/mosh.targetinstall: + @$(call targetinfo) + + @$(call install_init, mosh) + @$(call install_fixup, mosh,PRIORITY,optional) + @$(call install_fixup, mosh,SECTION,base) + @$(call install_fixup, mosh,AUTHOR,"") + @$(call install_fixup, mosh,DESCRIPTION,missing) + + @$(call install_copy, mosh, 0, 0, 0755, -, /usr/bin/mosh) + @$(call install_copy, mosh, 0, 0, 0755, -, /usr/bin/mosh-server) + @$(call install_copy, mosh, 0, 0, 0755, -, /usr/bin/mosh-client) + + @$(call install_finish, mosh) + + @$(call touch) + +# vim: syntax=make -- 1.7.9.5 -- ptxdist mailing list ptxdist@pengutronix.de