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

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

1.1       andrew      1: use strict;
                      2: use warnings;
                      3: use Module::Build;
1.7       andrew      4:
1.9     ! andrew      5: # $AFresh1: Build.PL,v 1.8 2010/01/22 01:30:45 andrew Exp $
1.1       andrew      6:
                      7: my $builder = Module::Build->new(
1.7       andrew      8:     module_name       => 'Text::Todo',
                      9:     license           => 'perl',
                     10:     dist_author       => 'Andrew Fresh <andrew@cpan.org>',
                     11:     dist_version_from => 'lib/Text/Todo.pm',
                     12:     requires          => {
                     13:         'Carp'              => 0,
1.5       andrew     14:         'Class::Std::Utils' => 0,
1.7       andrew     15:         'File::Spec'        => 0,
1.9     ! andrew     16:         'version'           => 0,
        !            17:     },
        !            18:     build_requires     => {
1.7       andrew     19:         'Test::More'        => 0.82,
1.1       andrew     20:     },
1.8       andrew     21:     add_to_cleanup     => [
                     22:         'Text-Todo-*',
                     23:         'MANIFEST',
                     24:         'META.yml',
                     25:         'Makefile.PL',
1.9     ! andrew     26:         'LICENSE',
        !            27:         'README',
1.8       andrew     28:     ],
                     29:     create_makefile_pl => 'traditional',
1.9     ! andrew     30:     create_license     => 1,
        !            31:     create_readme      => 1,
1.1       andrew     32: );
                     33:
                     34: $builder->create_build_script();

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