aboutsummaryrefslogtreecommitdiffstats
path: root/specgen.sh
blob: 197e8ffb4961b51fe53852d9e93ce0c2db48b34a (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
cat <<EOF
Description: Remote mail fetcher for POP2, POP3, APOP, IMAP
Name: fetchmail
Version: ${1}
Release: 1
Source: locke.ccil.org:/pub/esr/fetchmail-${1}.tar.gz
Copyright: distributable
Group: Mail

%prep
%setup

%build
%ifarch i386
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr 
%endif

%ifarch axp
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr 
%endif

make

%install
make install


%ifarch i386
%endif

%ifarch i386
%post
%endif


%files
%doc README NEWS RFC NOTES COPYING

%ifarch i386
%endif

/usr/bin/fetchmail
/usr/man/man1/fetchmail.1
EOF