SHA256
1
0
forked from pool/libcdr
libcdr/libcdr.spec

128 lines
3.9 KiB
RPMSpec

#
# spec file for package libcdr
#
# Copyright (c) 2014 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/
#
%define libname libcdr-0_0-0
Name: libcdr
Version: 0.0.14
Release: 0
Summary: Library for parsing the Corel Draw file format structure
License: LGPL-2.0+ or GPL-2.0+ or MPL-1.1
Group: Productivity/Publishing/Word
Url: http://www.freedesktop.org/wiki/Software/libcdr
Source0: http://dev-www.libreoffice.org/src/libcdr-%{version}.tar.xz
Patch0: libcdr-0.0.14-wpx_seek_end.patch
Patch1: libcdr-0.0.14-pkgconfig.patch
# note: the main package is empty, it only sets a sane name for the source rpm
BuildRequires: boost-devel
BuildRequires: doxygen
BuildRequires: gcc-c++
BuildRequires: libicu-devel
BuildRequires: liblcms2-devel
BuildRequires: libwpd-devel >= 0.9.5
BuildRequires: libwpg-devel >= 0.2.0
BuildRequires: pkgconfig
BuildRequires: xz
BuildRequires: zlib-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
libcdr is a library for parsing the Corel Draw file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.
%package -n %{libname}
Summary: Library for parsing the Corel Draw file format structure
Group: System/Libraries
%description -n %{libname}
libcdr is a library for parsing the Corel Draw file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.
%package devel
Summary: Files for Developing with libcdr
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
Requires: libwpd-devel
Requires: libwpg-devel
%description devel
libcdr is a library for parsing the Corel Draw file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.
This package contains the libcdr development files.
%package devel-doc
Summary: Documentation for the libcdr API
Group: Documentation/HTML
%if 0%{?suse_version} > 1200
BuildArch: noarch
%endif
%description devel-doc
This package contains documentation for the libcdr API.
%package tools
Summary: Tools to work with documents in Corel Draw file-format
Group: Productivity/Publishing/Word
%description tools
Tools to work with documents in Corel Draw file-format.
%prep
%setup -q
%patch0 -p1 -b .wpx_seek_end
%patch1 -p1 -b .pkgconfig
%build
export CXXFLAGS="%{optflags} -fvisibility-inlines-hidden"
%configure --disable-werror --disable-static --docdir=%{_docdir}/%{name}
make %{?_smp_mflags} V=1
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
find %{buildroot} -type f -name "*.la" -delete -print
# documentation
mkdir -p %{buildroot}%{_docdir}/%{name}
cp -p AUTHORS COPYING.* ChangeLog %{buildroot}%{_docdir}/%{name}
%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/libcdr*.pc
%{_includedir}/libcdr-*
%files devel-doc
%defattr(-,root,root,-)
%doc %dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/html
%files tools
%defattr(-,root,root)
%{_bindir}/*
%doc %dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/[A-Z]*
%changelog