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