summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tini/package.py
blob: d268033959f40e93f3e1436bc6012ed67a21c941 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2021 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"]

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