Annotation of todotxt/Text-Todo-REST-API/Build.PL, Revision 1.9
1.1 andrew 1: use strict;
2: use warnings;
3: use Module::Build;
1.2 andrew 4:
1.9 ! andrew 5: # $AFresh1: Build.PL,v 1.8 2010/01/31 03:58:31 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.8 andrew 14: 'Carp' => 0,
1.7 andrew 15: 'Class::Std::Utils' => 0,
1.2 andrew 16: 'Digest::MD5' => 0,
17: 'File::Spec' => 0,
18: 'Text::Todo' => 0,
19: 'Test::More' => 0,
20: 'version' => 0,
1.1 andrew 21: },
1.8 andrew 22: build_requires => {
1.9 ! andrew 23: 'Test::JSON' => 0,
1.8 andrew 24: 'Test::More' => 0.82,
25: },
26: add_to_cleanup => [
27: 'Text-Todo-REST-API-*',
28: 'MANIFEST',
29: 'META.yml',
30: 'Makefile.PL',
31: 'LICENSE',
32: 'README',
33: ],
34: create_makefile_pl => 'traditional',
35: create_license => 1,
36: create_readme => 1,
1.1 andrew 37: );
38:
39: $builder->create_build_script();
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>