2021-04-01 20:44:40 +00:00
|
|
|
%define name confluent_vtbufferd
|
|
|
|
%define version #VERSION#
|
|
|
|
%define release 1
|
2021-04-01 21:15:35 +00:00
|
|
|
%define debug_package %{nil}
|
|
|
|
%define _build_id_links none
|
2021-04-01 20:44:40 +00:00
|
|
|
|
|
|
|
Summary: Console buffer manager for confluent
|
|
|
|
Name: %{name}
|
2021-04-01 21:15:35 +00:00
|
|
|
Version: %{version}
|
2021-04-01 20:44:40 +00:00
|
|
|
Release: %{release}
|
|
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
License: Apache2
|
|
|
|
Group: Development/Libraries
|
|
|
|
Vendor: Lenovo HPC Organization <hpchelp@lenovo.com>
|
|
|
|
Url: https://github.com/lenovo/confluent/
|
|
|
|
|
|
|
|
%description
|
|
|
|
Service for managing in-memory VT emulation for confluent.
|
|
|
|
|
2021-04-01 21:15:35 +00:00
|
|
|
%prep
|
|
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
|
2021-04-01 20:44:40 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2022-04-25 20:05:22 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/opt/confluent/bin $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
2021-04-01 20:44:40 +00:00
|
|
|
cp vtbufferd $RPM_BUILD_ROOT/opt/confluent/bin/
|
2022-08-23 19:52:50 +00:00
|
|
|
cp NOTICE $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
2022-04-25 20:05:22 +00:00
|
|
|
cp LICENSE $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
2021-04-01 21:17:34 +00:00
|
|
|
|
|
|
|
%files
|
2021-04-01 21:21:33 +00:00
|
|
|
/opt/confluent/bin/vtbufferd
|
2022-08-23 19:52:50 +00:00
|
|
|
%license /opt/confluent/share/licenses/vtbufferd/NOTICE
|
2022-04-25 20:05:22 +00:00
|
|
|
%license /opt/confluent/share/licenses/vtbufferd/LICENSE
|