summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tini/package.py
blob: 07da212ada5fe1982e713d5f9b7d029bfe90edb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 Tini(CMakePackage):
    """A tiny but valid `init` for containers"""

    homepage = "https://github.com/krallin/tini"
    url = "https://github.com/krallin/tini/archive/refs/tags/v0.19.0.tar.gz"
    maintainers("teonnik", "Madeeks")

    license("MIT")

    version("0.19.0", sha256="0fd35a7030052acd9f58948d1d900fe1e432ee37103c5561554408bdac6bbf0d")
    patch("tini_static_rpath_issue.patch", when="@0.19.0:")