Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

I'm trying to create a module using Module::Install, but I think I'm missing something vital.

Do I need to copy Module::Install to a directory called inc in my module root dir? That's because the examples all have at the top.

use inc::Module::Install;

I'm sure that I'm not supposed to copy the Module::Install module by hand to this directory. Is there something like h2xs that I should be running?

Replies are listed 'Best First'.
Re: Creating a module with Module::Install
by xdg (Monsignor) on Jul 23, 2006 at 02:00 UTC

    No, run your Makefile.PL and Module::Install should magically create that for you.

    -xdg

    Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.