]> sjero.net Git - wget/blob - INSTALL
[svn] Documentation fix.
[wget] / INSTALL
1                                                                    -*- text -*-
2                         Installation Procedure
3
4 0) Preparation
5
6 To build and install GNU Wget, you need to unpack the archive (which
7 you have presumably done, since you are reading this), and read on.
8 Like most GNU utilities, Wget uses the GNU Autoconf mechanism for
9 build and installation; those of you familiar with compiling GNU
10 software will feel at home.
11
12 1) Configuration
13
14 To configure Wget, run the configure script provided with the
15 distribution.  You may use all the standard arguments configure
16 scripts take.  The most important ones are:
17
18   --help                  print help message
19
20   --prefix=PREFIX         install architecture-independent files in PREFIX
21                           (/usr/local by default)
22   --bindir=DIR            user executables in DIR (PREFIX/bin)
23   --infodir=DIR           info documentation in DIR [PREFIX/info]
24   --mandir=DIR            man documentation in DIR [PREFIX/man]
25
26   --build=BUILD           configure for building on BUILD [BUILD=HOST]
27   --host=HOST             configure for HOST [guessed]
28   --target=TARGET         configure for TARGET [TARGET=HOST]
29
30 --enable and --with options recognized (mostly Wget-specific):
31   --with-ssl[=SSL_ROOT]   link with libssl [in SSL_ROOT/lib] for https: support
32   --disable-opie          disable support for opie or s/key FTP login
33   --disable-digest        disable support for HTTP digest authorization
34   --disable-debug         disable support for debugging output
35   --disable-nls           do not use Native Language Support
36   --disable-largefile     omit support for large files
37   --disable-ipv6          disable IPv6 support
38
39 So, if you want to configure Wget for installation in your home
40 directory, you can type:
41
42     ./configure --prefix=$HOME
43
44 You can customize many default settings by editing Makefile and
45 config.h.  The program will work very well without your touching these
46 files, but it is useful to have a look at things you can change there.
47
48 If you have OpenSSL libraries installed in one of the default
49 directories, such as /usr/local/lib or /usr/local/ssl/lib, you can
50 simply `configure --with-ssl'.  If you have it installed elsewhere,
51 you need to specify your alternate OpenSSL root directory.  For
52 instance, if libcrypto.* and libssl.* are in /opt/openssl/lib, you
53 need to `configure --with-ssl=/opt/openssl'.
54
55 To configure Wget on Windows, read the instructions in
56 `windows/README'. If this doesn't work for any reason, talk to the
57 Windows developers listed there; I do not maintain the port.  That
58 does not apply to the "Cygwin" environment, where Wget should compile
59 out of the box as described here.
60
61 2) Compilation
62
63 To compile the program, type make and cross your fingers.  If you do
64 not have an ANSI compiler, Wget will try to KNR-ize its sources "on
65 the fly".  This should make GNU Wget compilable on almost any
66 Unix-like system out there.
67
68 After the compilation a ready to use `wget' executable should reside
69 in the src directory.  I do not have any kind of test-suite as of this
70 moment, but it should be easy enough to test whether the basic stuff
71 works.
72
73 3) Installation
74
75 Use `make install' to install GNU Wget to directories specified to
76 configure.  The standard prefix is "/usr/local/", which can be changed
77 using the `--prefix' configure option.
78
79 The installation process will copy the wget binary to $PREFIX/bin,
80 install the wget.info* info pages to $PREFIX/info, the autogenerated
81 manual page (where available) wget.1 to $PREFIX/man/man1, and the
82 default config file to $PREFIX/etc, unless a config file already
83 exists there.  You can customize these directories either through the
84 configuration process or making the necessary changes in the Makefile.
85
86 To delete the files created by Wget installation, you can use make
87 uninstall.