mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
22 lines
470 B
RPMSpec
22 lines
470 B
RPMSpec
|
Name: cri-tools
|
||
|
Version: OVERRIDE_THIS
|
||
|
Release: 00
|
||
|
License: ASL 2.0
|
||
|
Summary: Container Runtime Interface tools
|
||
|
|
||
|
URL: https://kubernetes.io
|
||
|
|
||
|
%description
|
||
|
Binaries to interface with the container runtime.
|
||
|
|
||
|
%prep
|
||
|
# This has to be hard coded because bazel does a path substitution before rpm's %{version} is substituted.
|
||
|
tar -xzf {cri_tools.tgz}
|
||
|
|
||
|
%install
|
||
|
install -m 755 -d %{buildroot}%{_bindir}
|
||
|
install -p -m 755 -t %{buildroot}%{_bindir} crictl
|
||
|
|
||
|
%files
|
||
|
%{_bindir}/crictl
|