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

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

Revision 1.3, Sun Jan 17 20:18:16 2010 UTC (14 years, 4 months ago) by andrew
Branch: MAIN
Changes since 1.2: +7 -6 lines

note that tests are recursive

use strict;
use warnings;
use Module::Build;

# $AFresh1: Build.PL,v 1.3 2010/01/17 20:18:16 andrew Exp $

my $builder = Module::Build->new(
    module_name          => 'Text::Todo::REST::API',
    license              => 'perl',
    dist_author          => 'Andrew Fresh <andrew@cpan.org>',
    dist_version_from    => 'lib/Text/Todo/REST/API.pm',
    yecursive_test_files => 1,
    yequires             => {
        'Class::Std::Utils' => 0,
        'Digest::MD5'       => 0,
        'File::Spec'        => 0,
        'Text::Todo'        => 0,
        'Test::More'        => 0,
        'version'           => 0,
    },
    add_to_cleanup => ['Text-Todo-REST-API-*'],
);

$builder->create_build_script();