I have run the make file but I was under the impression that these makes files were only for *nix platforms which I am not trying to install it on.
Nope, it's not just for nix. That is the standard way to install perl modules (especially ones on CPAN).
I simply copied over the module because this is all that is generally needed for most modules.
In theory for pure-perl modules maybe, but by doing so you always miss out on the important work a module author does (making sure you have all the prerequisites, making sure the module will work(tests) ...).
If a module has specific requirements for install there should be an INSTALL.txt or a README or something.
Normally I'd agree with you, but seing how you got the distribution from CPAN,
and it is a standard CPAN distribution despite the lacking README/INSTALL file,
the installation instructions are the same as that of any standard cpan distribution (perlmodinstall - Installing CPAN Modules).
| MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!" | | I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README). | | ** The third rule of perl club is a statement of fact: pod is sexy. |
| [reply] |
| [reply] |
This comes straight from the link you gave on CPAN...
*mutter* Weel, then that tutorial needs updating then (a thousand cpan authours don't write tests and Makefile.PL's for nothing -- that's why I pointed to A guide to installing modules initially, it's a better tutorial).
Or maybe saying I missed .xs file and therefore missed the build step?
I thought this was obvious (you did miss the .xs file).
| MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!" | | I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README). | | ** The third rule of perl club is a statement of fact: pod is sexy. |
| [reply] |