The Open–source PKI Book: A guide to PKIs and Open–source Implementations | ||
---|---|---|
Prev | Appendix A. Perl modules | Next |
We assume that you are familiar with locating and retrieving the Perl module of your interest. This is also described in detail in the section called Software installation sequence in Appendix D.
To install a Perl module, you need to uncompress and untar it.
user% tar xvfz a-perl-module-name.tar.gz
Enter the created directory and run
user% perl Makefile.PL
You may get an error that a dependancy is not met. In this case, you need to meet the requirement and try again. The most common case is that you need to install another Perl module first. |
Then run the make command.
user% make
Test the result with
user% make test
Complete the installation with
user% make install