libwpd/libwpd.spec

136 lines
4.0 KiB
RPMSpec

#
# spec file for package libwpd
#
# Copyright (c) 2015 SUSE LINUX 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: libwpd
Version: 0.10.1
Release: 0
Summary: Library for Importing WordPerfect (tm) Documents
License: LGPL-2.1+ and MPL-2.0+
Group: Productivity/Publishing/Word
Url: http://libwpd.sourceforge.net
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.xz
# note: the main package is empty, it only sets a sane name for the source rpm
BuildRequires: doxygen
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: help2man
BuildRequires: pkg-config
BuildRequires: xz
BuildRequires: pkgconfig(librevenge-0.0)
BuildRequires: pkgconfig(librevenge-stream-0.0)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libwpd is a general purpose library for reading or interpreting data
from WordPerfect files. The library is not a stand-alone utility: it is
designed to be used by another program (for example, a word processor)
as an in-process component.
%define libname libwpd-0_10-10
%package -n %{libname}
Summary: Library for Importing WordPerfect (tm) Documents
Group: System/Libraries
%description -n %{libname}
libwpd is a general purpose library for reading or interpreting data
from WordPerfect files. The library is not a stand-alone utility: it is
designed to be used by another program (for example, a word processor)
as an in-process component.
%package devel
Summary: Library for importing WordPerfect (tm) documents
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
Requires: libstdc++-devel
%description devel
libwpd is a general purpose library for reading (or, interpreting data
from) WordPerfect files. The library is not a stand-alone utility: it
is designed to be used by another program (e.g.: a word processor) as
an in-process component.
%package devel-doc
Summary: Documentation for the libwpd API
Group: Documentation/Other
%if 0%{?suse_version} > 1200
BuildArch: noarch
%endif
%description devel-doc
This package contains documentation for the libwpd API.
%package tools
Summary: Library for importing WordPerfect (tm) documents
Group: Productivity/Publishing/Word
%description tools
Tools to transform WordPerfect Documents into other formats. Currently
supported: html, raw, text
%prep
%setup -q
%build
export CXXFLAGS="%{optflags} -fvisibility-inlines-hidden"
%configure --disable-static --docdir=%{_docdir}/%{name}
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
find %{buildroot} -type f -name "*.la" -delete -print
mkdir -p %{buildroot}%{_mandir}/man1
for i in %{buildroot}%{_bindir}/*; do
LD_LIBRARY_PATH=%{buildroot}%{_libdir} \
help2man -N -o %{buildroot}%{_mandir}/man1/$(basename $i).1 $i
done
%fdupes -s %{buildroot}%{_docdir}/%{name}/html
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%files -n %{libname}
%defattr(-,root,root)
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%{_libdir}/*.so
%{_libdir}/pkgconfig/libwpd*.pc
%{_includedir}/libwpd-*
%files devel-doc
%defattr(-,root,root)
%doc %dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/html
%doc %{_docdir}/%{name}/libwpd.*
%files tools
%defattr(-,root,root)
%{_bindir}/*
%{_mandir}/man1/*.1*
%doc ChangeLog
%doc COPYING.LGPL
%doc COPYING.MPL
%doc CREDITS
%doc NEWS
%doc TODO
%changelog