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

Annotation of todotxt/Text-Todo/Build.PL, Revision 1.2

1.1       andrew      1: use strict;
                      2: use warnings;
                      3: use Module::Build;
1.2     ! andrew      4: # $RedRiver: Build.PL,v 1.1.1.1 2009/07/09 18:21:34 andrew Exp $
1.1       andrew      5:
                      6: my $builder = Module::Build->new(
                      7:     module_name         => 'Text::Todo',
                      8:     license             => 'perl',
                      9:     dist_author         => 'Andrew Fresh <andrew@cpan.org>',
                     10:     dist_version_from   => 'lib/Text/Todo.pm',
                     11:     requires => {
                     12:         'Test::More' => 0,
1.2     ! andrew     13:         'Carp' => 0,
        !            14:         'Class::Std::Utils' => 0,
        !            15:         'File::Spec' => 0,
        !            16:         'List::Util' => 0,
1.1       andrew     17:         'version'    => 0,
                     18:     },
                     19:     add_to_cleanup      => [ 'Text-Todo-*' ],
                     20: );
                     21:
                     22: $builder->create_build_script();

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