-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
23 lines (19 loc) · 1.06 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use ExtUtils::MakeMaker;
WriteMakefile( NAME => 'DateTime::Event::Recurrence',
VERSION_FROM => 'lib/DateTime/Event/Recurrence.pm',
AUTHOR => 'Flavio S. Glock <[email protected]>',
ABSTRACT => 'DateTime base recurrences',
PREREQ_PM => { 'DateTime' => 0.27, # local_rd_values
'DateTime::Set' => '0.3600',
},
META_MERGE => { 'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/fglock/DateTime-Event-Recurrence.git',
web => 'https://github.com/fglock/DateTime-Event-Recurrence',
},
},
},
);