[BACK]Return to Build.PL CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo

Diff for /todotxt/Text-Todo/Build.PL between version 1.8 and 1.9

version 1.8, 2010/01/22 01:30:45 version 1.9, 2010/01/22 18:15:56
Line 2 
Line 2 
 use warnings;  use warnings;
 use Module::Build;  use Module::Build;
   
 # $AFresh1: Build.PL,v 1.7 2010/01/20 21:53:57 andrew Exp $  # $AFresh1: Build.PL,v 1.8 2010/01/22 01:30:45 andrew Exp $
   
 my $builder = Module::Build->new(  my $builder = Module::Build->new(
     module_name       => 'Text::Todo',      module_name       => 'Text::Todo',
Line 13 
Line 13 
         'Carp'              => 0,          'Carp'              => 0,
         'Class::Std::Utils' => 0,          'Class::Std::Utils' => 0,
         'File::Spec'        => 0,          'File::Spec'        => 0,
         'Test::More'        => 0.82,  
         'version'           => 0,          'version'           => 0,
     },      },
       build_requires     => {
           'Test::More'        => 0.82,
       },
     add_to_cleanup     => [      add_to_cleanup     => [
         'Text-Todo-*',          'Text-Todo-*',
         'MANIFEST',          'MANIFEST',
         'META.yml',          'META.yml',
         'Makefile.PL',          'Makefile.PL',
           'LICENSE',
           'README',
     ],      ],
     create_makefile_pl => 'traditional',      create_makefile_pl => 'traditional',
       create_license     => 1,
       create_readme      => 1,
 );  );
   
 $builder->create_build_script();  $builder->create_build_script();

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>