2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-02-22 01:50:06 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-02-22 01:50:06 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Mosh(AutotoolsPackage):
|
|
|
|
"""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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
homepage = "https://mosh.org/"
|
|
|
|
url = "https://mosh.org/mosh-1.2.6.tar.gz"
|
|
|
|
|
2017-09-25 05:12:35 +08:00
|
|
|
version('1.3.2', '5122f4d2b973ab7c38dcdac8c35cb61e')
|
2017-04-11 00:12:49 +08:00
|
|
|
version('1.3.0', 'd961276995936953bf2d5a794068b076')
|
2017-02-22 01:50:06 +08:00
|
|
|
version('1.2.6', 'bb4e24795bb135a754558176a981ee9e')
|
|
|
|
|
|
|
|
depends_on('protobuf')
|
|
|
|
depends_on('ncurses')
|
|
|
|
depends_on('zlib')
|
|
|
|
depends_on('openssl')
|
|
|
|
|
2018-03-06 16:34:00 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2017-02-22 01:50:06 +08:00
|
|
|
depends_on('perl', type='run')
|
2017-04-11 00:12:49 +08:00
|
|
|
|
|
|
|
build_directory = 'spack-build'
|