-
Notifications
You must be signed in to change notification settings - Fork 30
/
oci-systemd-hook.spec
40 lines (33 loc) · 1.02 KB
/
oci-systemd-hook.spec
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
35
36
37
38
39
40
Name: oci-systemd-hook
Version: 0.1.3
Release: 1%{?dist}
Summary: OCI systemd hook for docker
Group: Applications/Text
License: GPLv3+
URL: https://github.com/mrunalp/hooks
Source: https://github.com/mrunalp/hooks/archive/%{name}-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: yajl-devel
BuildRequires: libselinux-devel
%description
OCI systemd hooks enable running systemd in a OCI runc/docker container.
%prep
%setup -q -n %{name}-%{version}
%build
autoreconf -i
%configure --libexecdir=/usr/libexec/docker/hooks.d/
make %{?_smp_mflags}
%install
%make_install
%files
%{_libexecdir}/docker/hooks.d/oci_systemd_hook
%{_mandir}/man1/oci_systemd_hook.1*
%doc README.md LICENSE
%changelog
* Mon Nov 23 2015 Mrunal Patel <[email protected]> - 0.1.3
- Fix bug in man page installation
* Mon Nov 23 2015 Mrunal Patel <[email protected]> - 0.1.2
- Add man pages
* Mon Nov 23 2015 Mrunal Patel <[email protected]> - 0.1.1
- Initial RPM release