Annotation of todotxt/Text-Todo-REST-API/Build.PL, Revision 1.2
1.1 andrew 1: use strict;
2: use warnings;
3: use Module::Build;
1.2 ! andrew 4:
! 5: # $AFresh1$
1.1 andrew 6:
7: my $builder = Module::Build->new(
1.2 ! 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',
! 12: requires => {
! 13: 'Class::Std::Utils' => 0,
! 14: 'Digest::MD5' => 0,
! 15: 'File::Spec' => 0,
! 16: 'Text::Todo' => 0,
! 17: 'Test::More' => 0,
! 18: 'version' => 0,
1.1 andrew 19: },
1.2 ! andrew 20: add_to_cleanup => ['Text-Todo-REST-API-*'],
1.1 andrew 21: );
22:
23: $builder->create_build_script();
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>