]> git.pld-linux.org Git - packages/libpst.git/blob - libpst.spec
- rebuild with boost 1.63.0
[packages/libpst.git] / libpst.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # don't build static libraries
4 #
5 Summary:        Library for reading .pst files
6 Summary(pl.UTF-8):      Biblioteka do czytania plików .pst
7 Name:           libpst
8 Version:        0.6.68
9 Release:        2
10 License:        GPL v2+
11 Group:          Libraries
12 Source0:        http://www.five-ten-sg.com/libpst/packages/%{name}-%{version}.tar.gz
13 # Source0-md5:  a942c243e1e6c25b82330c87b298b45c
14 URL:            http://www.five-ten-sg.com/libpst/
15 BuildRequires:  ImageMagick
16 BuildRequires:  autoconf >= 2.60
17 BuildRequires:  automake
18 BuildRequires:  boost-python-devel
19 BuildRequires:  gd-devel
20 BuildRequires:  libgsf-devel
21 BuildRequires:  libstdc++-devel
22 BuildRequires:  libtool
23 BuildRequires:  python-devel
24 BuildRequires:  python-modules
25 BuildRequires:  rpm-pythonprov
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 Library for reading PST (MS Outlook Personal Folders) files.
30
31 %description -l pl.UTF-8
32 Biblioteka do czytania plików .pst.
33
34 %package devel
35 Summary:        Header files for libpst library
36 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libpst
37 Group:          Development/Libraries
38 Requires:       %{name} = %{version}-%{release}
39
40 %description devel
41 Header files for libpst library.
42
43 %description devel -l pl.UTF-8
44 Pliki nagłówkowe biblioteki libpst.
45
46 %package static
47 Summary:        Static libpst library
48 Summary(pl.UTF-8):      Statyczna biblioteka libpst
49 Group:          Development/Libraries
50 Requires:       %{name}-devel = %{version}-%{release}
51
52 %description static
53 Static libpst library.
54
55 %description static -l pl.UTF-8
56 Statyczna biblioteka libpst.
57
58 %package tools
59 Summary:        Utilities for converting Microsoft Outlook .pst files
60 Summary(pl.UTF-8):      Narzędzia do konwertowania plików .pst Microsoft Outlooka
61 Group:          Applications
62 Requires:       %{name} = %{version}-%{release}
63 Requires:       ImageMagick
64 Obsoletes:      readpst
65
66 %description tools
67 Utilities for converting Microsoft Outlook .pst files.
68
69 %description tools -l pl.UTF-8
70 Narzędzia do konwertowania plików .pst Microsoft Outlooka.
71
72 %package -n python-libpst
73 Summary:        libpst Python bindings
74 Summary(pl.UTF-8):      Wiązania libpst dla Pythona
75 Group:          Development/Languages/Python
76
77 %description -n python-libpst
78 libpst Python bindings.
79
80 %description -n python-libpst -l pl.UTF-8
81 Wiązania libpst dla Pythona.
82
83 %prep
84 %setup -q
85
86 %build
87 %{__libtoolize}
88 %{__aclocal} -I m4
89 %{__autoconf}
90 %{__autoheader}
91 %{__automake}
92 %configure \
93         %{!?with_static_libs:--disable-static} \
94         --enable-dii \
95         --enable-libpst-shared
96
97 %{__make}
98
99 %install
100 rm -rf $RPM_BUILD_ROOT
101 install -d $RPM_BUILD_ROOT%{py_sitedir}
102
103 %{__make} install \
104         DESTDIR=$RPM_BUILD_ROOT
105
106 %{__rm} $RPM_BUILD_ROOT%{py_sitedir}/_libpst.{a,la}
107 # packaged as %doc (split into base and -devel)
108 %{__rm} -r $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
109
110 %clean
111 rm -rf $RPM_BUILD_ROOT
112
113 %post   -p /sbin/ldconfig
114 %postun -p /sbin/ldconfig
115
116 %files
117 %defattr(644,root,root,755)
118 %doc AUTHORS ChangeLog NEWS README TODO
119 %attr(755,root,root) %{_libdir}/libpst.so.*.*.*
120 %attr(755,root,root) %ghost %{_libdir}/libpst.so.4
121
122 %files devel
123 %defattr(644,root,root,755)
124 %doc html/*.html html/devel
125 %attr(755,root,root) %{_libdir}/libpst.so
126 %{_libdir}/libpst.la
127 %{_includedir}/libpst-4
128 %{_pkgconfigdir}/libpst.pc
129
130 %if %{with static_libs}
131 %files static
132 %defattr(644,root,root,755)
133 %{_libdir}/libpst.a
134 %endif
135
136 %files tools
137 %defattr(644,root,root,755)
138 %attr(755,root,root) %{_bindir}/lspst
139 %attr(755,root,root) %{_bindir}/nick2ldif
140 %attr(755,root,root) %{_bindir}/pst2dii
141 %attr(755,root,root) %{_bindir}/pst2ldif
142 %attr(755,root,root) %{_bindir}/readpst
143 %{_mandir}/man1/lspst.1*
144 %{_mandir}/man1/pst2dii.1*
145 %{_mandir}/man1/pst2ldif.1*
146 %{_mandir}/man1/readpst.1*
147 %{_mandir}/man5/outlook.pst.5*
148
149 %files -n python-libpst
150 %defattr(644,root,root,755)
151 %attr(755,root,root) %{py_sitedir}/_libpst.so
This page took 0.131211 seconds and 4 git commands to generate.