I am not too familiar with using this on windows, but it should be fairly equivalent to the UNIX process.

make runs the Makefile through make, all actual compilation and such (for pure perl modules this is usually just formatting documentation) happens here
make test runs the tests included with the module distribution, if they fail the installation shouldn't proceed.
make install actually copies the new module to where your scripts can find it, without having to do a 'use lib'

the CPAN command line is the easiest way to go here. simply run it with 'bash$ perl -MCPAN -e shell;' and type 'install Spreadsheet::ParseExcel' this will download the module, make it, test it and install it in the proper location; it will also take care of any dependencies for you (which can save A LOT of headaches)
Of course the catch 22 here is that you need to install the CPAN module first.

Again, I don't have any experience with this on windows, but that's the general idea.


In reply to Re: More CPAN woe by glwtta
in thread More CPAN woe by Basilides

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.