June 16, 2003 ModuleMaker Back Slide 7 Forward

Abstract


use ExtUtils::ModuleMaker;

my $MOD = ExtUtils::ModuleMaker->new

            (

              NAME => 'Sample::Module',

              ABSTRACT => 'this module does something',

            );

$MOD->complete_build ();

  • ABSTRACT is used by CPAN to give a brief description of the module
  • Added with perl 5.005
  • Limited to 44 characters
  • No default value


Copyright © 2001-2003 GlaxoSmithKline Back Contents Forward