summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/sl/package.py
blob: 8061eb601ea5b7c2ac0873b8544919e6eb744f47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2024 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.package 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"

    license("MIT")

    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)