diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-25 00:42:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 11:42:18 -0500 |
commit | a0c32e6ed7d446d0cb820c0faa56a42e6a911a9f (patch) | |
tree | bd08f56ecf945eb3b80237622f65865862b23662 /var | |
parent | e0dd5ce68a75772f24b1ba2cb49479d389d36c1b (diff) | |
download | spack-a0c32e6ed7d446d0cb820c0faa56a42e6a911a9f.tar.gz spack-a0c32e6ed7d446d0cb820c0faa56a42e6a911a9f.tar.bz2 spack-a0c32e6ed7d446d0cb820c0faa56a42e6a911a9f.tar.xz spack-a0c32e6ed7d446d0cb820c0faa56a42e6a911a9f.zip |
Add new package: slang (#18923)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/slang/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/slang/package.py b/var/spack/repos/builtin/packages/slang/package.py new file mode 100644 index 0000000000..c3ba78103d --- /dev/null +++ b/var/spack/repos/builtin/packages/slang/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Slang(AutotoolsPackage): + """An interpreted language and programing library.""" + + homepage = "https://www.jedsoft.org/slang" + url = "https://www.jedsoft.org/releases/slang/slang-2.3.2.tar.bz2" + + version('2.3.2', sha256='fc9e3b0fc4f67c3c1f6d43c90c16a5c42d117b8e28457c5b46831b8b5d3ae31a') + version('2.3.1', sha256='a810d5da7b0c0c8c335393c6b4f12884be6fa7696d9ca9521ef21316a4e00f9d') + + parallel = False |