blob: 46b63a65aa933da7db64f47b2d073a408bb88bc8 (
plain)
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
54
55
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: python-pygments
Version: 1.1.1
Release: 1
Summary: A syntax highlighting engine written in Python
Group: Development/Libraries
License: BSD
URL: http://pygments.org/
Source0: %{name}-%{version}.tar.gz
Source1001: python-pygments.manifest
BuildArch: noarch
BuildRequires: python-devel, python-setuptools
Requires: python-setuptools
%description
Pygments is a syntax highlighting engine written in Python. That means, it
will take source code (or other markup) in a supported language and output
a processed version (in different formats) containing syntax highlighting
markup.
%prep
%setup -q
%build
cp %{SOURCE1001} .
%{__python} setup.py build
%{__sed} -i 's/\r//' LICENSE
%install
%if 0%{?suse_version}
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%else
%{__python} setup.py install -O1 --skip-build --root %{buildroot} --prefix=%{_prefix}
%endif
%if 0%{?suse_version}
%files -f INSTALLED_FILES
%manifest %{name}.manifest
%else
%files
%manifest %{name}.manifest
%{python_sitelib}/*
%endif
# For noarch packages: sitelib
%{_bindir}/pygmentize
|