Annotation of todotxt/Text-Todo-REST-API/Build.PL, Revision 1.4
1.1 andrew 1: use strict;
2: use warnings;
3: use Module::Build;
1.2 andrew 4:
1.4 ! andrew 5: # $AFresh1: Build.PL,v 1.3 2010/01/17 20:18:16 andrew Exp $
1.1 andrew 6:
7: my $builder = Module::Build->new(
1.3 andrew 8: module_name => 'Text::Todo::REST::API',
9: license => 'perl',
10: dist_author => 'Andrew Fresh <andrew@cpan.org>',
11: dist_version_from => 'lib/Text/Todo/REST/API.pm',
1.4 ! andrew 12: recursive_test_files => 1,
! 13: requires => {
1.2 andrew 14: 'Class::Std::Utils' => 0,
15: 'Digest::MD5' => 0,
16: 'File::Spec' => 0,
17: 'Text::Todo' => 0,
18: 'Test::More' => 0,
19: 'version' => 0,
1.1 andrew 20: },
1.2 andrew 21: add_to_cleanup => ['Text-Todo-REST-API-*'],
1.1 andrew 22: );
23:
24: $builder->create_build_script();
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>