Annotation of todotxt/Text-Todo-REST/Build.PL, Revision 1.1.1.1
1.1 andrew 1: use strict;
2: use warnings;
3: use Module::Build;
4: # $RedRiver$
5:
6: my $builder = Module::Build->new(
7: module_name => 'Text::Todo::REST',
8: license => 'perl',
9: dist_author => 'Andrew Fresh <andrew@cpan.org>',
10: dist_version_from => 'lib/Text/Todo/REST.pm',
11: requires => {
12: 'Test::More' => 0,
13: 'version' => 0,
14: },
15: add_to_cleanup => [ 'Text-Todo-REST-*' ],
16: );
17:
18: $builder->create_build_script();
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>