]> git.pld-linux.org Git - packages/libpst.git/blob - libpst.spec
- updated to 0.6.59
[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.59
9 Release:        1
10 License:        GPL v2+
11 Group:          Libraries
12 Source0:        http://www.five-ten-sg.com/libpst/packages/%{name}-%{version}.tar.gz
13 # Source0-md5:  5805ee18944b1e2579717f0061c22c2b
14 URL:            http://www.five-ten-sg.com/libpst/
15 BuildRequires:  ImageMagick
16 BuildRequires:  autoconf >= 2.59
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 -f $RPM_BUILD_ROOT%{py_sitedir}/_libpst.{a,la}
107
108 %clean
109 rm -rf $RPM_BUILD_ROOT
110
111 %post   -p /sbin/ldconfig
112 %postun -p /sbin/ldconfig
113
114 %files
115 %defattr(644,root,root,755)
116 %doc AUTHORS ChangeLog NEWS README TODO
117 %attr(755,root,root) %{_libdir}/libpst.so.*.*.*
118 %attr(755,root,root) %ghost %{_libdir}/libpst.so.4
119
120 %files devel
121 %defattr(644,root,root,755)
122 %attr(755,root,root) %{_libdir}/libpst.so
123 %{_libdir}/libpst.la
124 %{_includedir}/libpst-4
125 %{_pkgconfigdir}/libpst.pc
126
127 %if %{with static_libs}
128 %files static
129 %defattr(644,root,root,755)
130 %{_libdir}/libpst.a
131 %endif
132
133 %files tools
134 %defattr(644,root,root,755)
135 %attr(755,root,root) %{_bindir}/lspst
136 %attr(755,root,root) %{_bindir}/nick2ldif
137 %attr(755,root,root) %{_bindir}/pst2dii
138 %attr(755,root,root) %{_bindir}/pst2ldif
139 %attr(755,root,root) %{_bindir}/readpst
140 %{_mandir}/man1/lspst.1*
141 %{_mandir}/man1/pst2dii.1*
142 %{_mandir}/man1/pst2ldif.1*
143 %{_mandir}/man1/readpst.1*
144 %{_mandir}/man5/outlook.pst.5*
145
146 %files -n python-libpst
147 %defattr(644,root,root,755)
148 %attr(755,root,root) %{py_sitedir}/_libpst.so
This page took 0.073093 seconds and 4 git commands to generate.