summaryrefslogtreecommitdiffstats
path: root/INSTALL
blob: 402ce53e30a54e71065364ff31edcda507c83aaf (plain) (blame)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
Name
       Install - instructions for installing the pages into the system

Synopsis
       sudo make [-j] install [V=1] [prefix=ARG] [DESTDIR=ARG] [...]

Description
   (a)  Use a package manager
       If you want to install the manual pages into your system, consider
       installing them through your package manager from an official release,
       instead of installing them from this repository.  This repository
       contains the newest manual pages, but using an official release and the
       system package manager offers important benefits.  On a Debian system
       it would be:

           $ sudo apt-get install -V manpages-dev manpages

       If you prefer to install the manual pages from this repository, maybe
       because your system ships a too old version, consider updating the
       package offered by your system.  See the <RELEASE> file, and also
       talk to the maintainer of the package in your distribution.

   (b)  Install manually from source
       If you are contributing to the project, you may want to install the
       manual pages from this repository to test them, instead of using an
       official release.  Or maybe your distribution installs packages from
       source code without any package manager.

       In most cases, you just want to install all of the manual pages, and
       nothing else.  To install them in the default system directory (per GNU
       guidelines), use:

           $ sudo make install

       It takes a few seconds, so it's fine to do it in parallel with:

           $ sudo make -j install

       A few features can be used to tweak the install:

       Variables
           There are many variables available with which you can tweak the
           build system.  Most of them are directory variables and command
           variables, based on the GNU Coding Standards.  Others are
           specially designed for this project.  To see all of the available
           variables, use:

               $ make help-variables

           The most common ones that you may use are:

           -  DESTDIR
           -  prefix

           Use V=1 for a more verbose output from the makefiles:

               $ sudo make install V=1

       Uninstall
           You can uninstall the pages with the following command (but see the
           "Caveats" section below):

               $ sudo make uninstall

       Targets
           There are targets for more granular control, such as 'install-man3'.
           See the help to know all of them:

               $ make help

   Dependencies
       -  Build-depends:
          -  Generic:
             -  echo(1)
             -  expr(1)
             -  find(1)
             -  grep(1)
             -  locale(1)
             -  make(1) - GNU Make is required.
             -  sed(1)
             -  sort(1)
             -  xargs(1)

          -  For installing:
             -  gzip(1)
             -  install(1)
             -  ln(1)
             -  sponge(1)
             -  test(1)

          -  For uninstalling / cleaning:
             -  rm(1)
             -  rmdir(1)

          -  For linting/building/checking man(7) source:
             -  eqn(1)
             -  grotty(1)
             -  head(1)
             -  mkdir(1)
             -  tail(1)
             -  tbl(1)
             -  troff(1) >= 1.23.0 - GNU troff is required.

          -  For linting/building C source:
             -  cc(1) - GCC or Clang
             -  clang-tidy(1)
             -  cpplint(1)
             -  iwyu(1)
             -  man(1)
             -  mkdir(1)
             -  pkg-config(1)
             -  tac(1)
             -  libbsd-dev

             And one that isn't packaged, but can be extracted from the Linux
             kernel source tree in <scripts/checkpatch.pl>:

             -  checkpatch(1)

          -  For building HTML pages:
             -  man2html(1)

       -  Depends:
          -  man(1)
          -  groff(1) | mandoc(1)

   Lint & check
       You can lint and check both the manual pages, and the example C
       programs contained in them.  See 'make help' for a list of targets that
       can be used.

Files
   Makefile, lib/install-man.mk, lib/install.mk
       Main makefiles for installing (however, others may also be used by
       inclusion).

   lib/cmd.mk
       Command variables.

   lib/install-html.mk
       Makefile to install HTML manual pages.

   lib/verbose.mk
       Handle verbose settings.

   lib/*.mk
       Other makefiles.

   man*/*
       Manual pages.

   /usr/local/share/man/man*/*
       Default location for installed pages.

Standards
       We follow closely the GNU Coding Standards:
       <https://www.gnu.org/prep/standards/html_node/Directory-Variables.html>.
       <https://www.gnu.org/prep/standards/html_node/Command-Variables.html>.

       And the Filesystem Hierarchy Standard:
       <https://refspecs.linuxfoundation.org/FHS_3.0/fhs/index.html>

       But deviate from them in some cases, the most notable case being the
       use of directories for manual subsections, such as <man3type/>.

Caveats
   Uninstall
       You can uninstall the pages.  However, take into account that it will
       only uninstall pages that exist in the repository.  This means that if
       you installed the manual pages from source from an older version of the
       repository with 'make install', and some page was [re]moved later, it
       won't be uninstalled.  You should probably install with a prefix of
       prefix=/opt/local/man-pages to be able to nuke the directory later with
       'rm -r /opt/local/man-pages'.  However, you'll need to modify your
       $MANPATH to be able to use those manual pages as if they were in a
       system path.

   Version and last-modified date
       If you're an end user or a distributor, make sure you do this (install)
       from a tarball, and not from the git repository.  The manual pages in
       the repository have placeholders for the version and last modified date,
       which are filled when creating the tarball.  You can create your own
       tarball, for which you need to read the RELEASE file.

See also
       gmake(1)