-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomodit-combox.spec.template
49 lines (33 loc) · 1.08 KB
/
comodit-combox.spec.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: comodit-combox
Version: #VERSION#
Release: #RELEASE#%{?dist}
Summary: Easily deploy and manage local development environments on your own system.
Group: Development/Languages
License: MIT
URL: http://github.com/guardis/comodit-combox
Source0: %{name}-%{version}-#RELEASE#.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: python-devel
BuildRequires: python-setuptools
Requires: comodit-client
%description
Easily deploy and manage local development environments on your own system.
%prep
%setup -q -c
%build
%{__python} setup.py build
%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%defattr(755,root,root,-)
/usr/bin/combox
%doc
# For noarch packages: sitelib
%{python_sitelib}/*
%changelog