]> git.pld-linux.org Git - packages/exiscan.git/blob - exiscan.spec
- removed all Group fields translations (oure rpm now can handle translating
[packages/exiscan.git] / exiscan.spec
1 %include        /usr/lib/rpm/macros.perl    
2 Summary:        A EMail Virus Scanner for Exim MTA
3 Summary(pl):    Antywirusowy skaner poczty elektronicznej dla Exim MTA
4 Name:           exiscan
5 Version:        2.2
6 Release:        1
7 URL:            http://duncanthrax.net/exiscan/
8 Source0:        http://duncanthrax.net/exiscan/%{name}-v%{version}.tar.gz
9 Source1:        %{name}.init
10 Patch0:         %{name}-config.patch
11 License:        GPL
12 Group:          Applications/Mail
13 BuildRequires:  perl-devel
14 BuildRequires:  perl-modules
15 BuildRequires:  perl-MailTools
16 BuildRequires:  perl-Unix-Syslog
17 Requires:       exim
18 # http://www.pldaniels.com/ripmime/
19 Requires:       ripmime
20 # http://world.std.com/~damned/software.html
21 Requires:       tnef
22 Prereq:         /sbin/chkconfig
23 BuildArch:      noarch
24 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
25
26 %description
27 Exiscan is an email virus scanner which works together with the Exim
28 MTA (http://www.exim.org). It is written in Perl and designed to be
29 very easy to implement. Exiscan supports multithreaded unpacking and
30 scanning of mail, with a configurable number of processes. Exiscan has
31 generic support for available command line virus scanners. Exiscan can
32 scan inside of MS-TNEF and SMIME (signed) wrapped messages.
33
34 %description -l pl
35 Exiscan to antywirusowy skaner poczty dzia³aj±cy wraz z MTA Exim
36 (http://www.exim.org). Exiscan zosta³ napisany w Perlu oraz
37 zaprojektowany tak by byæ bardzo ³atwym w u¿yciu. Exiscan wspiera
38 wielow±tkowe rozpakowywanie i skanowanie poczty z konfigurowalnym
39 ograniczeniem ilo¶ci procesów. Exiscan mo¿e wspó³pracowaæ z wieloma
40 skanerami antywirusowymi wywo³ywanymi z lini poleceñ. Exiscan mo¿e
41 skanowaæ wiadomo¶ci opakowane za pomoc± MS-TNEF oraz SMIME
42 (podpisane).
43
44 %prep
45 %setup -q -n %{name}
46 %patch0 -p1
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_sysconfdir}/{mail,rc.d/init.d}}
52 install -d $RPM_BUILD_ROOT%{_var}/spool/%{name}/{checkqueue,virusmails}
53
54 install %{SOURCE1}      $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/%{name}
55 install exiscan*.pl     $RPM_BUILD_ROOT%{_sbindir}
56 install exiscan*.cf     $RPM_BUILD_ROOT%{_sysconfdir}/mail
57
58 gzip -9nf CHANGELOG INSTALL README*
59
60 %post
61 /sbin/chkconfig --add %{name}
62 if [ -f %{_var}/lock/subsys/%{name} ]; then
63         %{_sysconfdir}/rc.d/init.d/%{name} restart 1>&2
64 else
65         echo "Run \"%{_sysconfdir}/rc.d/init.d/%{name} start\" to start %{name} daemon."
66 fi
67
68 %preun
69 if [ "$1" = "0" -a -f %{_var}/lock/subsys/%{name} ]; then
70         %{_sysconfdir}/rc.d/init.d/%{name} stop 1>&2
71 fi
72 /sbin/chkconfig --del %{name}
73
74 %files
75 %defattr(644,root,root,755)
76 %doc *.gz
77 %attr(755,root,root) %{_sbindir}/*
78 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/mail/*.cf
79 %attr(750,exim,root) %{_var}/spool/%{name}
80 %attr(754,root,root) %{_sysconfdir}/rc.d/init.d/%{name}
81
82 %clean
83 rm -rf $RPM_BUILD_ROOT
This page took 0.08913 seconds and 3 git commands to generate.