summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/moreutils/package.py
blob: 55a130d778be28cd0c037c1219050140f7f4dc29 (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
28
29
30
31
32
33
34
# Copyright 2013-2023 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 Moreutils(MakefilePackage):
    """Additional Unix utilities. This is a growing collection of the Unix
    tools that nobody thought to write long ago, when Unix was young."""

    homepage = "https://joeyh.name/code/moreutils"
    url = "https://deb.debian.org/debian/pool/main/m/moreutils/moreutils_0.63.orig.tar.xz"

    maintainers("matthiasdiener")

    license("GPL-2.0-or-later")

    version("0.65", sha256="ba0cfaa1ff6ead2b15c62a67292de66a366f9b815a09697b54677f7e15f5a2b2")
    version("0.63", sha256="01f0b331e07e62c70d58c2dabbb68f5c4ddae4ee6f2d8f070fd1e316108af72c")

    depends_on("perl", type="build")
    depends_on("docbook-xsl", type="build")
    depends_on("libxml2", type="build")
    depends_on("libxslt", type="build")

    def edit(self, spec, prefix):
        isutf8_makefile = FileFilter("is_utf8/Makefile")
        isutf8_makefile.filter("CC = .*", "")

        env["DOCBOOKXSL"] = spec["docbook-xsl"].prefix
        env["PREFIX"] = self.prefix