]> Pileus Git - ~andy/fetchmail/blob - specgen.sh
The RPM now has an icon.
[~andy/fetchmail] / specgen.sh
1 cat <<EOF
2 Description: Remote mail fetch daemon for POP2, POP3, APOP, IMAP
3 Name: fetchmail
4 Version: ${1}
5 Release: 1
6 Vendor: Eric Conspiracy Secret Labs
7 Source: locke.ccil.org:/pub/esr/fetchmail/fetchmail-${1}.tar.gz
8 URL: http://www.ccil.org/~esr/fetchmail
9 Group: Applications/Mail
10 Copyright: GPL
11 Icon: fetchmail.gif
12 Requires: smtpdaemon
13
14 %prep
15 %setup
16
17 %build
18 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
19 make
20
21 %install
22 make install
23
24 %files
25 %doc README NEWS NOTES fetchmail-FAQ.html FAQ COPYING INSTALL sample.rcfile
26
27 %ifarch i386
28 %endif
29
30 /usr/bin/fetchmail
31 /usr/man/man1/fetchmail.1
32 EOF