|
Posted by Slaven Rezic on August 17, 2005, 11:48 pm
Please log in for more thread options
> Hi, there
>
> I used h2xs to package my module,
h2xs is not a packaging tool. It's a helper for initial module and
distribution creation, probably interfacing a C library (hence the
name).
> but now as i see that's not a very good
> practice. For instance, `make dist` produces META.yml: with no license
> record.
You can take care of META.yml yourself, just put NO_META => 1 into
your Makefile.PL.
> (Also i wondering why Carp and CGI modules used in my module don't
> counted in 'requires' record...)
Strictly speaking, CGI and Carp do not need to be listed as a
PREREQ_PM (or requires), as these modules are included in every recent
perl5 standard distribution. That speaking, the existence of minimal
perl distributions is possible, so mentioning them does not hurt.
Usually you're yourself responsible to fill the dependency fields.
There are helper modules to get the list of dependencies, e.g.
Module::Dependency.
> I'm i right? Is there any other (configurable) tools useful for packaging
> modules for CPAN?
>
Probably. Look into the Module:: hierarchy.
Regards,
Slaven
--
Slaven Rezic - slaven <at> rezic <dot> de
Dump a Tk canvas as an xfig file:
http://search.cpan.org/search?mode=module&query=Tk::CanvasFig
|