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
|
INSTALLATION
============
Using CPAN Interactive shell
----------------------------
% perl -MCPAN -e shell
cpan> install CGI::Session::Serialize::yaml
Using Makefile.PL
--------------------
% perl Makefile.PL
% make
% make test
% make install
If you don't have proper permissions to perform system-wide
installations you can install CGI::Session::Serialize::yaml to your private
PERL5LIB folder:
% perl Makefile.PL LIB=~/perllib
% make
% make test
% make install
These commands install CGI::Session::Serialize::yaml to your ~/perllib folder.
TESTING
=======
See the INSTALL document in the CGI::Session distro.
|