catatonit/catatonit.spec

65 lines
1.8 KiB
RPMSpec

#
# spec file for package catatonit
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: catatonit
Version: 0.1.2
Release: 0
Summary: Incredibly simple container init
License: GPL-3.0-or-later
Group: System/Management
Url: https://github.com/openSUSE/catatonit
Source0: %{name}-%{version}.tar.xz
Source1: %{name}-%{version}.tar.xz.asc
Source2: %{name}.keyring
BuildRequires: gcc
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
%description
A container init so simple it's effectively brain-dead. This is a
reimplementation of other container inits (such as tini or dumb-init), using
modern Linux facilities (such as signalfd(2)) and with no additional features
or bloat. It forwards (almost) all signals to the spawned child, exits when the
spawned child dies, and reaps any zombies it sees.
%prep
%setup -q
%build
autoreconf -fi
%configure
make %{?_smp_mflags}
%install
%make_install
ln -s %{_bindir}/%{name} %{buildroot}%{_bindir}/docker-init
%files
%defattr(-,root,root)
%doc README.md
%if 0%{?suse_version} >= 1500
%license COPYING
%else
%doc COPYING
%endif
%{_bindir}/%{name}
%{_bindir}/docker-init
%changelog