File: INSTALL

package info (click to toggle)
dep.pl 1.36.0-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 304 kB
  • ctags: 55
  • sloc: sh: 497; perl: 452; makefile: 203
file content (63 lines) | stat: -rw-r--r-- 2,025 bytes parent folder | download | duplicates (2)
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
Installing dep.pl
=================

The most  simple way  is to type  `./configure' and then  `make'. That
will install dep.pl into /usr/local.

If you want  to change the location, you can set  any of the following
variables:

	* prefix:  the  prefix  used  for  all  other  paths  (if  not
          otherwise overridden). Defaults to `/usr/local'.

	* exec_prefix: the prefix used for determining the destination
	  of executable files. Defaults to `${prefix}'.

	* bindir: the directory  where the binaries (actually scripts)
          will be installed. Defaults to `${exec_prefix}/bin'.

	* datadir:  the  directory where  miscelleanous  data will  be
          installed.   This   is  not  used   directly.   Defaults  to
          `${prefix}/share'.

	* docdir: directory where  documentation will reside. Defaults
          to `${datadir}/doc'.

	* mandir:    directory    where    man   pages    should    be
          installed. Defaults to `${prefix}/man'.

	* sysconfdir:  system  configuration  directory.  Defaults  to
          `${prefix}/etc'.

	* libdir:   directory   to    put   libraries.   Defaults   to
          `${prefix}/lib'.

	* infodir: directory to  put info documentation into. Defaults
          to `${prefix}/info'. 

	* pkgconfdir:  directory where  package-specific configuration
	  should be installed. Defaults to `${sysconfdir}/etc'.

	* language:   the  default  language   to  use.   Defaults  to
          `en'.

	* DESTDIR:  The  destination   directory.  This  is  empty  by
          default.

Almost all of  the variables can be passed  to `./configure', but then
they  must  be  prefixed  with  two dashes.  The  two  exceptions  are
`language',  which is called  `--with-language', and  `DESTDIR', which
cannot be passed to configure.

To make it clear, the following two examples do the same thing:

   $ ./configure
   ...
   $ make install prefix=/usr/local/dep.pl
   ... 

   $ ./configure --prefix=/usr/local/dep.pl
   ... 
   $ make install

Gergely Nagy <8@free.bsd.hu>