]> git.pld-linux.org Git - packages/pfqueue.git/blame - pfqueue.spec
- ldconfig
[packages/pfqueue.git] / pfqueue.spec
CommitLineData
9ea72376
JR
1Summary: A console-based tool for handling MTA queues
2Name: pfqueue
3Version: 0.5.3
b9fbf5c7 4Release: 0.2
9ea72376
JR
5License: GPL
6Group: Applications/Mail
7Source0: http://dl.sourceforge.net/pfqueue/%{name}-%{version}.tar.gz
8# Source0-md5: 7700198871f91cf28e0164f8e776dd55
9URL: http://pfqueue.sourceforge.net/
10BuildRequires: ncurses-devel
11#Requires: postfix or exim
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15pfqueue is an effort to give postqueue/mailq/postsuper/exim4 a console
16(ncurses) interface: it won't add any particular functionality to
17those provided with MTAs themselves, but will hopefully make them
18easier to use.
19
20It's a real-time queue scanner, that shows per-queue lists of existing
21messages; the messages can be shown, deleted, put on hold, released or
22requeued
23
24Just for example, it may be useful to inspect a traffic jam at a given
25time, to see what is falling into and unexpectedly crowding your
26deferred queue.
27
28%prep
29%setup -q
30
31%build
32CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
33export CFLAGS
34%configure
35%{__make}
36
37%install
38rm -rf $RPM_BUILD_ROOT
39
40%{__make} install \
41 DESTDIR=$RPM_BUILD_ROOT
42
43%clean
44rm -rf $RPM_BUILD_ROOT
45
b9fbf5c7
JR
46%post -p /sbin/ldconfig
47%postun -p /sbin/ldconfig
48
9ea72376
JR
49%files
50%defattr(644,root,root,755)
51%doc AUTHORS ChangeLog NEWS README TODO
52%attr(755,root,root) %{_bindir}/*
53%attr(755,root,root) %{_libdir}/libpfq*.so.*.*.*
54%{_mandir}/man1/*.1*
55%{_mandir}/man5/*.5*
This page took 0.078857 seconds and 4 git commands to generate.