mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-21 17:11:58 +00:00
48 lines
1.0 KiB
Cheetah
48 lines
1.0 KiB
Cheetah
Name: confluent_imgutil
|
|
Version: #VERSION#
|
|
Release: 1
|
|
Summary: Confluent OS imaging utility
|
|
License: Apache2
|
|
URL: https://hpc.lenovo.com/
|
|
Source: confluent_imgutil.tar.xz
|
|
BuildArch: noarch
|
|
BuildRoot: /tmp/
|
|
%if "%{dist}" == ".el8"
|
|
Requires: squashfs-tools cpio
|
|
%else
|
|
%if "%{dist}" == ".el9"
|
|
Requires: squashfs-tools cpio
|
|
%else
|
|
%if "%{dist}" == ".el7"
|
|
Requires: squashfs-tools cpio
|
|
%else
|
|
Requires: squashfs
|
|
%endif
|
|
%endif
|
|
%endif
|
|
|
|
|
|
%description
|
|
Utility for generating, modifying, and packing confluent deployment
|
|
images for diskless boot.
|
|
|
|
%prep
|
|
%setup -n imgutil
|
|
|
|
%build
|
|
mkdir -p opt/confluent/lib/imgutil
|
|
mkdir -p opt/confluent/bin
|
|
mv imgutil opt/confluent/bin/
|
|
chmod a+x opt/confluent/bin/imgutil
|
|
mv ubuntu* suse15 el7 el9 el8 opt/confluent/lib/imgutil/
|
|
mkdir -p opt/confluent/share/licenses/confluent_imgutil
|
|
cp LICENSE opt/confluent/share/licenses/confluent_imgutil
|
|
|
|
%install
|
|
cp -a opt %{buildroot}/
|
|
|
|
%files
|
|
/opt/confluent/bin/imgutil
|
|
/opt/confluent/lib/imgutil
|
|
%license /opt/confluent/share/licenses/confluent_imgutil/LICENSE
|