The standard means of installing a Perl module manualy are like this:
Makefile.PL
make
make test
make install
Makefile.PL is a perl script that generates a "Makefile". Makefiles are from the unix world, and they provide a means of automatically compiling a program or library. The "make" (or "nmake" in your case) does the actual compile. In a Perl module that uses C in the background, that means compiling the C code into object code. In a Perl module that only contains Perl code, the 'make' portion might do nothing at all.
"make test" reads the Makefile and does a bunch of tests on the compiled code. Finally, "make install" copies all the files into a place where they can be useful. After that runs, you should be able to just "use Some::Module;" in your code.
When CPAN is used to install the module, the "make" stage runs "Makefile.PL" and "make". The "test" stage automatically does the "make" stage, and then runs "make test". The "install" stage automatically does the "test" stage, then runs the "make install".
So I'm guessing your getting problems in the "make install" portion. It might be copying things to a bad location, not copying at all, or not even running.
In reply to Re: More CPAN woe
by hardburn
in thread More CPAN woe
by Basilides
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |