-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
29 lines (26 loc) · 960 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'MooseX::DataMapper',
license => 'perl',
dist_author => 'Dexter B. Tad-y <dtady@cpan.org>',
dist_version_from => 'lib/MooseX/DataMapper.pm',
build_requires => {
'Test::More' => 0,
'Test::Exception' => 0,
'Moose' => 0,
'SQL::Abstract' => 0,
'SQL::Abstract::Limit' => 0,
'DBIx::Simple' => 0,
'DBD::SQLite' => 0,
'DateTime' => 0,
'DateTime::Format::SQLite' => 0,
'DateTime::Format::MySQL' => 0,
'DateTime::Format::Pg', => 0,
},
add_to_cleanup => [ 'MooseX-DataMapper-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();
__END__