forked from jchris/couchapp
-
Notifications
You must be signed in to change notification settings - Fork 5
/
python-couchapp.spec
53 lines (40 loc) · 1.58 KB
/
python-couchapp.spec
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
49
50
51
52
53
# sitelib for noarch packages, sitearch for others (remove the unneeded one)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
%define srcname couchapp
Name: python-%{srcname}
Version: 0.8.1
Release: 1%{?dist}
Summary: Standalone CouchDB Application Development Made Simple
Group: Development/Libraries
License: Apache License 2
URL: http://github.com/couchapp/couchapp/tree/master
Source0: %{srcname}-%{version}.tar.bz2
BuildArch: x86_64
BuildRequires: python-devel python-setuptools
BuildRequires: python-setuptools
%description
CouchApp is a set of helpers and a jQuery plugin that conspire to get you up
and running on CouchDB quickly and correctly. It brings clarity and order to
the freedom of CouchDB's document-based approach.
%prep
%setup -q -n %{srcname}-%{version}
%build
# Remove CFLAGS=... for noarch packages (unneeded)
CFLAGS="$RPM_OPT_FLAGS" %{__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,-)
%doc LICENSE NOTICE README.rst THANKS
%{_bindir}/couchapp
# For noarch packages: sitelib
# %{python_sitelib}/*
# For arch-specific packages: sitearch
%{python_sitearch}/*
%changelog
* Mon Jul 18 2011 Pau Aliagas <[email protected]> 0.8.1-1
- Initial version