forked from dekimsey/SQL-Abstract-Limit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
executable file
·24 lines (22 loc) · 823 Bytes
/
Build.PL
File metadata and controls
executable file
·24 lines (22 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'SQL::Abstract::Limit',
license => 'perl',
dist_author => 'David Baird <cpan@riverside-cms.co.uk>',
dist_version_from => 'lib/SQL/Abstract/Limit.pm',
requires => { 'Test::More' => 0,
'Test::Exception' => 0,
'Test::Builder' => 0,
'Test::Deep' => 0,
'SQL::Abstract' => '1.2',
'Scalar::Util' => 0,
'Data::Dumper' => 0,
'DBI' => 0, # for DBI::Const::GetInfoType
'SQL::Abstract' => 1.2,
},
create_makefile_pl => 'traditional',
add_to_cleanup => [ 'SQL-Abstract-Limit-*' ],
);
$builder->create_build_script();