File: INSTALL.in

package info (click to toggle)
perdition 2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,676 kB
  • sloc: ansic: 14,560; sh: 5,274; makefile: 391
file content (73 lines) | stat: -rw-r--r-- 1,600 bytes parent folder | download | duplicates (11)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
INSTALL

perdition
Mail retrieval proxy server
Copyright (C) 1999-2005  Horms <horms@verge.net.au>
----------------------------------------------------------------------

To install perdition 
--------------------

tar zxf perdition-@VERSION@.tar.gz
cd perdition-@VERSION@
./configure --enable-static [--prefix=/usr]
make
make install


To build RPMS
-------------

rpmbuild -ta perdition-@VERSION@.tar.gz

or

tar zxf perdition-@VERSION@.tar.gz
cd perdition-@VERSION@
./configure --enable-static --prefix=/usr
make distcheck
rpmbuild -ta perdition-@VERSION@.tar.gz

N.B: If you have an older version of rpm you may need to use
     the "rpm" command instead of "rpmbuild". The command line
     options should be the same.


To build Debian Packages
------------------------

tar zxf perdition-@VERSION@.tar.gz
cd perdition-@VERSION@
dpkg-build -rfakeroot [-us] [-uc]

You will need to create a popmap and decide on your invocation method.
For details on this please see the README


To install on Solaris and Free BSD
----------------------------------

You may need to set some envirnoment variables to aid the build process.
You may also need to use gmake instead of make to use the
Makefiles that are generated by automake.

Bourne Shell

CPPFLAGS="-I/usr/local/include/"
export CPPFLAGS
LDFLAGS="-L/usr/local/lib/"
export LDFLAGS

tar zxf perdition-@VERSION@.tar.gz
cd perdition-@VERSION@
./configure --enable-static [--prefix=/usr]
gmake
gmake install

C Shell

env CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" \
	./configure --enable-static [--prefix=/usr]
gmake
gmake install