-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBuild.PL
40 lines (38 loc) · 1.04 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
31
32
33
34
35
36
37
38
39
40
use Module::Build;
my $build = Module::Build->new(
license => 'perl',
dist_author => 'Dave Cross <[email protected]>',
module_name => 'Calendar::Simple',
requires => {
perl => '5.10.0',
Carp => 0,
'Time::Local' => 0,
Config => 0,
},
recommends => {
DateTime => 0,
},
build_requires => {
'Test::More' => 0,
},
build_recommends => {
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
},
create_makefile_pl => 'traditional',
script_files => [ 'bin/pcal' ],
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/davorg-cpan/calendar-simple.git',
web => 'https://github.com/davorg-cpan/calendar-simple',
},
bugtracker => {
web => 'https://github.com/davorg-cpan/calendar-simple/issues',
},
},
},
);
$build->create_build_script;