-
Notifications
You must be signed in to change notification settings - Fork 3
/
Build.PL
35 lines (32 loc) · 920 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
30
31
32
33
34
35
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'SQL::Admin',
license => 'perl',
dist_author => 'Branislav Zahradnik <[email protected]>',
dist_version_from => 'lib/SQL/Admin.pm',
requires => {
'DBI' => 0,
'Data::Compare' => 0,
'Getopt::Long' => 0,
'List::Util' => 0,
'Module::Load' => 0,
'Parse::RecDescent' => 0,
'Pod::Usage' => 0,
'SQL::Abstract' => 0,
},
build_requires => {
'Test::More' => 0,
'Attribute::Handlers' => 0,
},
add_to_cleanup => [ 'SQL-Admin-*' ],
create_readme => 1,
meta_merge => {
resources => {
repository => 'https://github.com/happy-barney/perl-SQL-Admin',
bugtracker => 'https://github.com/happy-barney/perl-SQL-Admin/issues',
},
},
);
$builder->create_build_script();