]> git.pld-linux.org Git - SPECS.git/blob - mbx2mbox.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / mbx2mbox.spec
1 #
2 # Conditional build:
3 %bcond_without tests            # do not perform "make test"
4 #
5 Summary:        Converts Outlook .mbx and .dbx files into standard UUCP mailbox files
6 Summary(pl.UTF-8):      Konwersja plików .mbx i .dbx z Outlooka na standardowe skrzynki UUCP
7 Name:           mbx2mbox
8 Version:        0.34
9 Release:        2
10 License:        GPL
11 Group:          Applications/Text
12 Source0:        http://dl.sourceforge.net/mbx2mbox/%{name}-%{version}.tar.gz
13 # Source0-md5:  a72210d985ef56ef1ad3b37bb428bf7b
14 URL:            http://mbx2mbox.sourceforge.net/
15 BuildRequires:  perl-devel >= 1:5.6.0
16 BuildRequires:  perl-Date-Manip
17 BuildRequires:  rpm-perlprov >= 4.1-13
18 BuildArch:      noarch
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 mbx2mbox attempts to convert Microsoft's proprietary .mbx and .dbx
23 formats to the standard Unix-style UUCP mail format used by programs
24 like UCB Mail, Pine, and Netscape Messenger. The .mbx and .dbx files
25 provided as arguments to mbx2mbox are processed and output to files
26 having the same name, except without the .mbx extension.
27
28 %description -l pl.UTF-8
29 mbx2mbox próbuje konwertować pliki .mbx i .dbx we własnościowych
30 formatach Microsoftu do standardowego, uniksowego formatu skrzynek
31 UUCP, używanego przez programy takie jak UCB Mail, Pine czy Netscape
32 Messenger. Pliki .mbx i .dbx przekazane jako argumenty mbx2mbox są
33 przetwarzane z zapisywane do plików o tej samej nazwie, ale bez
34 rozszerzenia .mbx.
35
36 %prep
37 %setup -q
38
39 %build
40 %{__perl} Makefile.PL
41 %{__make}
42
43 %{?with_tests:%{__make} test}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %attr(755,root,root) %{_bindir}/mbx2mbox
57 %{_mandir}/man1/mbx2mbox*
This page took 0.455737 seconds and 3 git commands to generate.