- upgrade to version 0.9.6: - Experimental support of Zip storage along with Ole. - Add WPX_SEEK_END enum member in order to speed up the Zip operations. - Numerous fixes of coverity and cppcheck warnings and errors. - upstream patch to really enable Zip stream. - package build depends on zlib-devel. OBS-URL: https://build.opensuse.org/request/show/136290 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libwpd?expand=0&rev=22
127 lines
3.7 KiB
RPMSpec
127 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package libwpd
|
|
#
|
|
# 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: libwpd
|
|
# note: the main package is empty, it only sets a sane name for the source rpm
|
|
BuildRequires: doxygen
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: zlib-devel
|
|
Version: 0.9.6
|
|
Release: 0
|
|
Summary: Library for Importing WordPerfect (tm) Documents
|
|
License: LGPL-2.1+
|
|
Group: Productivity/Publishing/Word
|
|
Source: libwpd-%{version}.tar.bz2
|
|
Patch0: libwpd-0.9.6-zipstream.patch
|
|
Url: http://libwpd.sourceforge.net
|
|
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_9-9
|
|
|
|
%package -n %libname
|
|
# remove the old non-versioned package (built in the bs for instance)
|
|
Obsoletes: libwpd < %version
|
|
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
|
|
Requires: libwpd-devel
|
|
|
|
%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
|
|
%patch0 -p0 -b .zipstream
|
|
|
|
%build
|
|
export CXXFLAGS="%optflags -fvisibility-inlines-hidden"
|
|
%configure --disable-static --docdir=%_docdir/%name
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
rm $RPM_BUILD_ROOT%_libdir/*.la
|
|
|
|
%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}/*
|
|
%doc %dir %{_docdir}/%{name}
|
|
%doc ChangeLog
|
|
%doc COPYING
|
|
%doc CREDITS
|
|
%doc NEWS
|
|
%doc TODO
|
|
|
|
%changelog
|