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
|
INSTALL
perl Build.PL
./Build
./Build test
./Build install (as root to install system-wide)
To install to a different directory (if you're not root, for example),
use the
--install_path lib=~/lib/perl
and/or
--install_path libdoc=~/man/man3
options to the install step. The above paths are just examples.
See the Module::Build documentation for more information.
INSTALLATION USING MAKEFILE
You may also install via the usual make incantation:
perl Makefile.PL
make
make test
make install
To install to a different directory (if you're not root, for example),
use the
PREFIX=~/lib/perl
option to the install step. The above path is just an example.
|