diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2019-05-27 03:40:56 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-05-26 20:40:55 -0500 |
commit | 86b2156921134e960b1eecff481f7576c255c531 (patch) | |
tree | 6cb4172a4ffa18e8ee846fba70171407efd30f0c | |
parent | d6f2ff14261da7fe9f98d32d56bb37e52423c75b (diff) | |
download | spack-86b2156921134e960b1eecff481f7576c255c531.tar.gz spack-86b2156921134e960b1eecff481f7576c255c531.tar.bz2 spack-86b2156921134e960b1eecff481f7576c255c531.tar.xz spack-86b2156921134e960b1eecff481f7576c255c531.zip |
New Package: sl (#11565)
Add the sl program.
-rw-r--r-- | var/spack/repos/builtin/packages/sl/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/sl/package.py b/var/spack/repos/builtin/packages/sl/package.py new file mode 100644 index 0000000000..a3c858d245 --- /dev/null +++ b/var/spack/repos/builtin/packages/sl/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2019 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 Sl(MakefilePackage): + """SL: Cure your bad habit of mistyping""" + + homepage = "https://github.com/mtoyoda/sl" + url = "https://github.com/mtoyoda/sl/archive/5.02.tar.gz" + + version('5.02', sha256='1e5996757f879c81f202a18ad8e982195cf51c41727d3fea4af01fdcbbb5563a') + + depends_on('ncurses') + + def edit(self, spec, prefix): + makefile = FileFilter('Makefile') + makefile.filter('CC=.*', 'CC=cc') + + def install(self, spec, prefix): + mkdirp(prefix.bin) + install('sl', prefix.bin) |