mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
c70f365cd2
add supportfor pam authentication
37 lines
933 B
Cheetah
37 lines
933 B
Cheetah
%define name confluent_client
|
|
%define version #VERSION#
|
|
%define release 1
|
|
|
|
Summary: Client libraries and utilities for confluent
|
|
Name: %{name}
|
|
Version: %{version}
|
|
Release: %{release}
|
|
Source0: %{name}-%{version}.tar.gz
|
|
License: UNKNOWN
|
|
Group: Development/Libraries
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
Prefix: %{_prefix}
|
|
BuildArch: noarch
|
|
Vendor: Jarrod Johnson <jbjohnso@us.ibm.com>
|
|
Url: http://xcat.sf.net/
|
|
Requires: confluent_common
|
|
|
|
%description
|
|
This package enables python development and command line access to
|
|
a confluent server.
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-scripts=/opt/confluent/bin --install-purelib=/opt/confluent/lib/python
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|