in reply to Re: Re: Newbie Adding Module to Perl
in thread Newbie Adding Module to Perl
this is where it would show the files being unzipped and a directory call Sys-AlarmCall-1.2 would be created$ cd /tmp $ tar -zxvf Sys-AlarmCall-1.2.tar.gz
now we're in the Sys-AlarmCall-1.2 directory which is where Makefile.PL is$ cd Sys-AlarmCall-1.2
so if you download the module to a directory called uswsqa Sys, then all you should have to do is substitute that directory for /tmp in the above instructions...$ perl Makefile.PL $ make $ make test $ make install
|
|---|