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

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

Revision 1.1, Sat Jan 16 16:05:11 2010 UTC (14 years, 3 months ago) by andrew
Branch point for: MAIN

Initial revision

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

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

$builder->create_build_script();