forked from jhradilek/check-links
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
84 lines (52 loc) · 2.41 KB
/
INSTALL
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
check-db-links
INSTALLATION INSTRUCTIONS
Copyright (C) 2014 Jaromir Hradilek
This file covers the installation and uninstallation of the check-db-links
utility on GNU/Linux. For information on how to use this tool, read the
file named README.
See the end of this file for copying conditions.
TABLE OF CONTENTS
1. System Requirements
2. Installation
3. Uninstallation
4. License
1. SYSTEM REQUIREMENTS
The check-db-links utility depends on the following tools:
- curl
- xmllint
- xmlstarlet
In addition, the included makefile requires the following tool in order to
generate the manual page from the source code:
- pod2man
2. INSTALLATION
To install the check-db-links utility in the system, change to the main
directory with its source code and type the following at a shell prompt as
the root user:
make install
This installs the utility, its manual page, and related documentation to the
respective subdirectories in the /usr/local/ directory. To use a different
installation directory, change the value of the "prefix" variable on the
command line. For example, to install check-db-links to ~/.local/, type:
make prefix=$HOME/.local install
3. UNINSTALLATION
To uninstall the check-db-links utility from the system, change to the main
directory with the source code and type the following at a shell prompt as the
root user:
make uninstall
This removes the utility, its manual page, and related documentation from
the respective subdirectories in the /usr/local/ directory. If you have
installed the utility in a different directory, change the value of the
"prefix" variable on the command line. For example, if you have installed
check-db-links to ~/.local/, type:
make prefix=$HOME/.local uninstall
4. LICENSE
This file is part of the check-db-links utility.
The check-db-links utility is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by the
Free Software Foundation, version 3 of the License.
check-db-links is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.