forked from pool/python-djvulibre
db8884ef86
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-djvulibre?expand=0&rev=13
86 lines
2.7 KiB
RPMSpec
86 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package python-djvulibre
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: python-djvulibre
|
|
Version: 0.3.9
|
|
Release: 0
|
|
Summary: Python Support for the DjVu Image Format
|
|
License: GPL-2.0
|
|
Group: Development/Libraries/Python
|
|
Url: http://jwilk.net/software/python-djvulibre
|
|
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
|
|
BuildRequires: graphviz
|
|
BuildRequires: graphviz-gnome
|
|
BuildRequires: pkg-config
|
|
BuildRequires: python-Cython
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-distribute
|
|
# Starting openSUSE 12.1 the package name is python-Sphinx.
|
|
BuildRequires: python-sphinx
|
|
BuildRequires: pkgconfig(ddjvuapi)
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%py_requires
|
|
|
|
%description
|
|
python-djvulibre is a set of Python bindings for the DjVuLibre library,
|
|
an open source implementation of DjVu.
|
|
|
|
%package doc
|
|
Summary: Python Support for the DjVu Image Format (Documentation)
|
|
Group: Documentation/HTML
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
python-djvulibre is a set of Python bindings for the DjVuLibre library,
|
|
an open source implementation of DjVu.
|
|
|
|
This package contains technical documentation.
|
|
|
|
%prep
|
|
%setup -q
|
|
chmod -x examples/*
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
python setup.py build
|
|
python setup.py build_sphinx
|
|
|
|
%install
|
|
python setup.py install \
|
|
--root=%{buildroot} \
|
|
--prefix=%{_prefix} \
|
|
--record-rpm=INSTALLED_FILES
|
|
install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_images
|
|
install -dm 0755 %{buildroot}%{_defaultdocdir}/%{name}-doc/_static
|
|
install -m 0644 build/sphinx/html/{*.html,*.js} \
|
|
%{buildroot}%{_defaultdocdir}/%{name}-doc
|
|
install -m 0644 build/sphinx/html/_images/* \
|
|
%{buildroot}%{_defaultdocdir}/%{name}-doc/_images
|
|
install -m 0644 build/sphinx/html/_static/* \
|
|
%{buildroot}%{_defaultdocdir}/%{name}-doc/_static
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root,-)
|
|
%doc COPYING doc/changelog examples
|
|
|
|
%files doc
|
|
%defattr(-,root,root,-)
|
|
%doc %{_defaultdocdir}/%{name}-doc
|
|
|
|
%changelog
|