##################################################
## START install perl modules by tar.gz
##################################################
# go to where you did download the modules tar
cd /path/to/module
# unzip
gzip -d *.tar.gz
# untar verbosely
tar xvf *.tar
# check the dirs created
for dir in `find \`pwd\` -maxdepth 1 -type d ` ; do echo cd $dir ; done ;
# go to the first dir which was created from the untar operation
for dir in `find \`pwd\` -maxdepth 1 -type d ` ; do cd $dir ; done ;
# create the make file
perl Makefile.PL
# run make
make
# optionally test
make test
# optionally create the make html
make html
# install
make install
##################################################
## STOP install perl modules by tar.gz
##################################################
No comments:
Post a Comment
- the first minus - Comments have to be moderated because of the spammers
- the second minus - I am very lazy at moderating comments ... hardly find time ...
- the third minus - Short links are no good for security ...
- The REAL PLUS : Any critic and positive feedback is better than none, so your comments will be published sooner or later !!!!