-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBuild.PL
32 lines (28 loc) · 1.03 KB
/
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 Module::Build;
my $build = Module::Build->new(
module_name => 'DateTime::Set',
dist_name => 'DateTime-Set',
dist_author => 'Flavio S. Glock <[email protected]>',
dist_abstract => 'DateTime set objects',
license => 'perl',
requires => {
'DateTime' => 0.12,
'Set::Infinite' => 0.59,
'Test::More' => 0,
'Params::Validate' => 0,
},
conflicts => {
'DateTime::Event::Recurrence' => '< 0.10',
'DateTime::Event::ICal' => '< 0.07',
'DateTime::Event::Random' => '< 0.03',
'DateTime::Event::Cron' => '<= 0.06',
'DateTime::Event::Sunrise' => '<= 0.05', # cvs ok; CPAN not ok
'DateTime::Event::Chinese' => '< 0', # untested
'DateTime::Event::Lunar' => '< 0', # untested
'DateTime::Event::SolarTerm' => '< 0', # untested
},
# sign => 1,
# create_makefile_pl => 'passthrough'
);
$build->create_build_script;