-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathINSTALL
More file actions
26 lines (18 loc) · 766 Bytes
/
INSTALL
File metadata and controls
26 lines (18 loc) · 766 Bytes
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
To merely try this software, there is no need to install anything.
The utilities in bin/ may be run from their location.
To generate Makefile and test the package, run from command line:
% perl Makefile.PL
% make
% make test
To install the package (probably as root), run:
% make install
The default installation directories are usually /usr/local/bin
for utilities and /usr/local/share/perl5 for perl modules.
To change them, specify parameters on the "make install" step
(see "perldoc ExtUtils::MakeMaker") or on the first step, like:
perl Makefile.PL PREFIX=/tmp/myroot
In this case the installation directories will be:
/tmp/myroot/bin for utilities,
/tmp/myroot/share/man/man3 for man pages and
/tmp/myroot/share/perl5 for perl modules.
Good luck.