in reply to Re: How to make a module ready for public release?
in thread How to make a module ready for public release?

OK, but, don't they have to read my module, see which other modules it requires, etc., in order to create the correct Makefile.pl and so on? Or is all that done at installation time? As you can see I know very little about the make process.


($_='kkvvttuu bbooppuuiiffss qqffssmm iibbddllffss')
=~y~b-v~a-z~s; print
  • Comment on Re^2: How to make a module ready for public release?

Replies are listed 'Best First'.
Re^3: How to make a module ready for public release?
by davorg (Chancellor) on Aug 16, 2005 at 08:14 UTC
    OK, but, don't they have to read my module, see which other modules it requires, etc., in order to create the correct Makefile.pl and so on? Or is all that done at installation time?

    No. You need to edit the created Makefile.PL (or, better, Build.PL) to add in the dependencies and stuff like that.

    My recommendation would be:

    1. Install Module::Starter
    2. Start a new module (in a different directory) with the same name as your module - that will give you all of the scaffolding required)
    3. Edit the files to add in your code and make any other required changes
    --
    <http://dave.org.uk>

    "The first rule of Perl club is you do not talk about Perl club."
    -- Chip Salzenberg