blob: 0e9c6e93597d9f1320b9144928557f01f30f187a (
plain)
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
|
------------------------------------------------------------
STANDARD INSTALLATION
On most systems, just do this from the command line:
perl Makefile.PL
make test
make install
Please note that you'll need permission to write to the
standard installation directories; under Unix-like systems, this
often means that you must be logged in as "root".
If you're on a non-Unix platform, you might be using 'dmake'
instead of 'make'.
------------------------------------------------------------
NON-STANDARD INSTALLATION
To install to a non-standard place else (e.g., "/home/me/lib"),
see the manual page for ExtUtils::MakeMaker, or try this:
perl Makefile.PL LIB=/home/me/lib
make test
make install
|