-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
30 lines (28 loc) · 884 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
use strict;
use warnings;
use Module::Build 0.31;
my $builder = Module::Build->new(
module_name => 'Module::Build::Database',
license => 'perl',
dist_author => q{Brian Duggan <[email protected]>},
dist_version_from => 'lib/Module/Build/Database.pm',
build_requires => {
'Test::More' => 0,
'File::Copy::Recursive' => 0,
'IO::Socket::INET' => 0,
},
requires => {
perl => '5.10.0',
'Digest::MD5' => 0,
'File::Copy::Recursive' => 0,
'Sub::Exporter' => 0,
'blib' => 0,
'List::MoreUtils' => 0,
'File::Which' => 0,
'File::ShareDir' => 0,
'Path::Class' => 0,
},
add_to_cleanup => [ 'Module-Build-Database-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();