=================================================================== RCS file: /cvs/todotxt/Text-Todo/Build.PL,v retrieving revision 1.4 retrieving revision 1.9 diff -u -r1.4 -r1.9 --- todotxt/Text-Todo/Build.PL 2010/01/18 00:19:55 1.4 +++ todotxt/Text-Todo/Build.PL 2010/01/22 18:15:56 1.9 @@ -2,7 +2,7 @@ use warnings; use Module::Build; -# $AFresh1: Build.PL,v 1.3 2010/01/11 19:52:06 andrew Exp $ +# $AFresh1: Build.PL,v 1.8 2010/01/22 01:30:45 andrew Exp $ my $builder = Module::Build->new( module_name => 'Text::Todo', @@ -10,14 +10,25 @@ dist_author => 'Andrew Fresh ', dist_version_from => 'lib/Text/Todo.pm', requires => { - 'Test::More' => 0, - 'Carp' => 0, - 'Class::Std' => 0, - 'File::Spec' => 0, - 'List::Util' => 0, - 'version' => 0, + 'Carp' => 0, + 'Class::Std::Utils' => 0, + 'File::Spec' => 0, + 'version' => 0, }, - add_to_cleanup => ['Text-Todo-*'], + build_requires => { + 'Test::More' => 0.82, + }, + add_to_cleanup => [ + 'Text-Todo-*', + 'MANIFEST', + 'META.yml', + 'Makefile.PL', + 'LICENSE', + 'README', + ], + create_makefile_pl => 'traditional', + create_license => 1, + create_readme => 1, ); $builder->create_build_script();