mirror of
https://github.com/xcat2/confluent.git
synced 2026-07-18 08:26:50 +00:00
bb7de607c2
confluent_vtbufferd/tmt.c has a BSD-3-Clause license as described in confluent_vtbufferd/NOTICE, too.
37 lines
1014 B
Cheetah
37 lines
1014 B
Cheetah
%define name confluent_vtbufferd
|
|
%define version #VERSION#
|
|
%define release 1
|
|
%define debug_package %{nil}
|
|
%define _build_id_links none
|
|
|
|
Summary: Console buffer manager for confluent
|
|
Name: %{name}
|
|
Version: %{version}
|
|
Release: %{release}
|
|
Source0: %{name}-%{version}.tar.gz
|
|
License: Apache-2.0 AND BSD-3-Clause
|
|
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.
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
|
|
%build
|
|
make
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT/opt/confluent/bin $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
|
cp vtbufferd $RPM_BUILD_ROOT/opt/confluent/bin/
|
|
cp NOTICE $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
|
cp LICENSE $RPM_BUILD_ROOT/opt/confluent/share/licenses/vtbufferd
|
|
|
|
%files
|
|
/opt/confluent/bin/vtbufferd
|
|
%license /opt/confluent/share/licenses/vtbufferd/NOTICE
|
|
%license /opt/confluent/share/licenses/vtbufferd/LICENSE
|