mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-21 17:11:58 +00:00
8909fb16d6
This will fix shebang mangling.
35 lines
883 B
Cheetah
35 lines
883 B
Cheetah
%define name confluent_common
|
|
%define version #VERSION#
|
|
%define release 1
|
|
|
|
Summary: common content for confluent client and server
|
|
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/
|
|
|
|
%description
|
|
This provides the modules common for both client and server
|
|
|
|
%prep
|
|
%setup -n %{name}-%{version} -n %{name}-%{version}
|
|
|
|
%build
|
|
python2 setup.py build
|
|
|
|
%install
|
|
python2 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES --install-purelib=/opt/confluent/lib/python --install-scripts=/opt/confluent/bin
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|