]> git.pld-linux.org Git - packages/libmspub.git/blob - libmspub.spec
0a0ca883788c6c12d3d2053cd4ab4d720a52e6fb
[packages/libmspub.git] / libmspub.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # static library
4
5 Summary:        A library providing ability to interpret and import Microsoft Publisher content
6 Summary(pl.UTF-8):      Biblioteka umożliwiająca interpretowanie i importowanie treści z Microsoft Publishera
7 Name:           libmspub
8 Version:        0.1.4
9 Release:        4
10 License:        MPL v2.0
11 Group:          Libraries
12 Source0:        http://dev-www.libreoffice.org/src/libmspub/%{name}-%{version}.tar.xz
13 # Source0-md5:  ac6fa9c1c05ece27c58c05e11786fd3a
14 Patch0:         %{name}-types.patch
15 URL:            http://www.freedesktop.org/wiki/Software/libmspub
16 BuildRequires:  boost-devel
17 BuildRequires:  doxygen
18 BuildRequires:  libicu-devel
19 BuildRequires:  librevenge-devel >= 0.0.1
20 BuildRequires:  libstdc++-devel >= 6:4.7
21 BuildRequires:  pkgconfig >= 1:0.20
22 BuildRequires:  tar >= 1:1.22
23 BuildRequires:  xz
24 BuildRequires:  zlib-devel
25 Requires:       librevenge >= 0.0.1
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 Libmspub is library providing ability to interpret and import
30 Microsoft Publisher content into various applications. You can find it
31 being used in libreoffice.
32
33 %description -l pl.UTF-8
34 Libmspub to biblioteka umożliwiająca interpretowanie i importowanie
35 treści z Microsoft Publishera do wielu aplikacji. Jest wykorzystywana
36 przez libreoffice.
37
38 %package devel
39 Summary:        Development files for libmspub
40 Summary(pl.UTF-8):      Pliki nagłówkowe dla libmspub
41 Group:          Development/Libraries
42 Requires:       %{name} = %{version}-%{release}
43 Requires:       libicu-devel
44 Requires:       librevenge-devel >= 0.0.1
45 Requires:       libstdc++-devel >= 6:4.7
46 Requires:       zlib-devel
47
48 %description devel
49 This package contains the header files for developing applications
50 that use libmspub.
51
52 %description devel -l pl.UTF-8
53 Pen pakiet zawiera pliki nagłówkowe do tworzenia aplikacji opartych na
54 libmspub.
55
56 %package static
57 Summary:        Static libmspub library
58 Summary(pl.UTF-8):      Statyczna biblioteka libmspub
59 Group:          Development/Libraries
60 Requires:       %{name}-devel = %{version}-%{release}
61
62 %description static
63 Static libmspub library.
64
65 %description static -l pl.UTF-8
66 Statyczna biblioteka libmspub.
67
68 %package apidocs
69 Summary:        libmspub API documentation
70 Summary(pl.UTF-8):      Dokumentacja API biblioteki libmspub
71 Group:          Documentation
72 BuildArch:      noarch
73
74 %description apidocs
75 API and internal documentation for libmspub library.
76
77 %description apidocs -l pl.UTF-8
78 Dokumentacja API biblioteki libmspub.
79
80 %package tools
81 Summary:        Tools to transform Microsoft Publisher content into other formats
82 Summary(pl.UTF-8):      Programy do przekształcania treści z Microsoft Publishera do innych formatów
83 Group:          Applications/Publishing
84 Requires:       %{name} = %{version}-%{release}
85
86 %description tools
87 Tools to transform Microsoft Publisher content into other formats.
88 Currently supported: XHTML, raw.
89
90 %description tools -l pl.UTF-8
91 Narzędzia do przekształcania treści z Microsoft Publishera do innych
92 formatów. Aktualnie obsługiwane są XHTML i raw.
93
94 %prep
95 %setup -q
96 %patch0 -p1
97
98 %build
99 %configure \
100         --disable-silent-rules \
101         %{?with_static_libs:--enable-static}
102
103 %{__make}
104
105
106 %install
107 rm -rf $RPM_BUILD_ROOT
108 %{__make} install \
109         DESTDIR=$RPM_BUILD_ROOT
110
111 # obsoleted by pkg-config
112 %{__rm} $RPM_BUILD_ROOT%{_libdir}/*.la
113
114 %clean
115 rm -rf $RPM_BUILD_ROOT
116
117 %post   -p /sbin/ldconfig
118 %postun -p /sbin/ldconfig
119
120 %files
121 %defattr(644,root,root,755)
122 %doc AUTHORS ChangeLog NEWS README
123 %attr(755,root,root) %{_libdir}/libmspub-0.1.so.*.*.*
124 %attr(755,root,root) %ghost %{_libdir}/libmspub-0.1.so.1
125
126 %files devel
127 %defattr(644,root,root,755)
128 %attr(755,root,root) %{_libdir}/libmspub-0.1.so
129 %{_includedir}/libmspub-0.1
130 %{_pkgconfigdir}/libmspub-0.1.pc
131
132 %if %{with static_libs}
133 %files static
134 %defattr(644,root,root,755)
135 %{_libdir}/libmspub-0.1.a
136 %endif
137
138 %files apidocs
139 %defattr(644,root,root,755)
140 %doc %{_docdir}/%{name}
141
142 %files tools
143 %defattr(644,root,root,755)
144 %attr(755,root,root) %{_bindir}/pub2raw
145 %attr(755,root,root) %{_bindir}/pub2xhtml
This page took 0.053137 seconds and 2 git commands to generate.