-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
35 lines (34 loc) · 1.07 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
23
24
25
26
27
28
29
30
31
32
33
34
35
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
(MM->can('signature_target') ? (SIGN => 1) : ()),
'NAME' => 'Oxford::Calendar',
'VERSION_FROM' => 'lib/Oxford/Calendar.pm', # finds $VERSION
'PREREQ_PM' => {
Text::Abbrev => 0,
Date::Calc => 0,
YAML => 0,
Time::Seconds => 0,
}, # e.g., Module::Name => 1.1
'AUTHOR' => [
'Dominic Hargreaves <[email protected]>',
],
'ABSTRACT_FROM' => 'lib/Oxford/Calendar.pm',
'TEST_REQUIRES' => {
Test::More => 0,
Test::Exception => 0,
Time::Piece => 0,
},
'LICENSE' => 'artistic_2',
'META_MERGE' => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/jmdh/Oxford-Calendar.git',
web => 'https://github.com/jmdh/Oxford-Calendar',
},
},
},
);