Here is a normal procedure of installing Perl modules:
Code: Select all
% tar xvzf blah-1.2.3.tar.gz
% cd blah-1.2.3
% perl Makefile.PL
% make
% make test
% make install
Code: Select all
% cd blah-1.2.3
% make uninstall
Moderator: cah
Code: Select all
% tar xvzf blah-1.2.3.tar.gz
% cd blah-1.2.3
% perl Makefile.PL
% make
% make test
% make install
Code: Select all
% cd blah-1.2.3
% make uninstall