libwpd/libwpd.spec

127 lines
3.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libwpd
#
# Copyright (c) 2013 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: xz
BuildRequires: zlib-devel
Version: 0.9.7
Release: 0
Summary: Library for Importing WordPerfect (tm) Documents
License: LGPL-2.1+ and MPL-2.0+
Group: Productivity/Publishing/Word
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.xz
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
%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.LGPL
%doc COPYING.MPL
%doc CREDITS
%doc NEWS
%doc TODO
%changelog