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-04 10:09:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-02-04 10:09:25 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2019-10-29 09:27:54 +08:00
|
|
|
class EsShell(AutotoolsPackage):
|
2017-02-04 10:09:25 +08:00
|
|
|
"""Es is an extensible shell. The language was derived from the Plan 9
|
|
|
|
shell, rc, and was influenced by functional programming languages,
|
|
|
|
such as Scheme, and the Tcl embeddable programming language. This
|
|
|
|
implementation is derived from Byron Rakitzis's public domain
|
|
|
|
implementation of rc."""
|
|
|
|
|
|
|
|
homepage = "http://wryun.github.io/es-shell/"
|
|
|
|
url = "https://github.com/wryun/es-shell/releases/download/v0.9.1/es-0.9.1.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.9.1', sha256='b0b41fce99b122a173a06b899a4d92e5bd3cc48b227b2736159f596a58fff4ba')
|
2017-02-11 08:00:20 +08:00
|
|
|
|
|
|
|
depends_on('readline')
|