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

File: [local] / todotxt / Text-Todo / Build.PL (download)

Revision 1.1.1.1 (vendor branch), Thu Jul 9 18:21:34 2009 UTC (14 years, 10 months ago) by andrew
Branch: andrew
CVS Tags: andrew_2009-07-09
Changes since 1.1: +0 -0 lines

todo.txt manager

use strict;
use warnings;
use Module::Build;
# $RedRiver$

my $builder = Module::Build->new(
    module_name         => 'Text::Todo',
    license             => 'perl',
    dist_author         => 'Andrew Fresh <andrew@cpan.org>',
    dist_version_from   => 'lib/Text/Todo.pm',
    requires => {
        'Test::More' => 0,
        'version'    => 0,
    },
    add_to_cleanup      => [ 'Text-Todo-*' ],
);

$builder->create_build_script();