[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.4 and 1.5

version 1.4, 2010/01/18 00:19:55 version 1.5, 2010/01/18 02:46:48
Line 1 
Line 1 
 use strict;  use strict;
 use warnings;  use warnings;
 use Module::Build;  use Module::Build;
   
 # $AFresh1: Build.PL,v 1.3 2010/01/11 19:52:06 andrew Exp $  # $AFresh1: Build.PL,v 1.3 2010/01/11 19:52:06 andrew Exp $
   
 my $builder = Module::Build->new(  my $builder = Module::Build->new(
     module_name       => 'Text::Todo',      module_name         => 'Text::Todo',
     license           => 'perl',      license             => 'perl',
     dist_author       => 'Andrew Fresh <andrew@cpan.org>',      dist_author         => 'Andrew Fresh <andrew@cpan.org>',
     dist_version_from => 'lib/Text/Todo.pm',      dist_version_from   => 'lib/Text/Todo.pm',
     requires          => {      requires => {
         'Test::More' => 0,          'Test::More' => 0,
         'Carp'       => 0,          'Carp' => 0,
         'Class::Std' => 0,          'Class::Std::Utils' => 0,
         'File::Spec' => 0,          'File::Spec' => 0,
         'List::Util' => 0,          'List::Util' => 0,
         'version'    => 0,          'version'    => 0,
     },      },
     add_to_cleanup => ['Text-Todo-*'],      add_to_cleanup      => [ 'Text-Todo-*' ],
 );  );
   
 $builder->create_build_script();  $builder->create_build_script();

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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