Annotation of todotxt/Text-Todo-REST-API/Build.PL, Revision 1.8
1.1 andrew 1: use strict;
2: use warnings;
3: use Module::Build;
1.2 andrew 4:
1.8 ! andrew 5: # $AFresh1: Build.PL,v 1.7 2010/01/18 03:10:42 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 => {
! 23: 'Test::More' => 0.82,
! 24: },
! 25: add_to_cleanup => [
! 26: 'Text-Todo-REST-API-*',
! 27: 'MANIFEST',
! 28: 'META.yml',
! 29: 'Makefile.PL',
! 30: 'LICENSE',
! 31: 'README',
! 32: ],
! 33: create_makefile_pl => 'traditional',
! 34: create_license => 1,
! 35: create_readme => 1,
1.1 andrew 36: );
37:
38: $builder->create_build_script();
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>