blob: 423c10c134a5ac8413728323e0f652f11f2ae327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
cat <<EOF
Description: Remote mail fetch daemon for POP2, POP3, APOP, IMAP
Name: fetchmail
Version: ${1}
Release: 1
Source: locke.ccil.org:/pub/esr/fetchmail/fetchmail-${1}.tar.gz
Copyright: freely redistributable
Group: Mail
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
make
%install
make install
%files
%doc README NEWS NOTES fetchmail-FAQ.html FAQ COPYING INSTALL sample.rcfile
%ifarch i386
%endif
/usr/bin/fetchmail
/usr/man/man1/fetchmail.1
EOF
|