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