-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
22 lines (22 loc) · 884 Bytes
/
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 ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Date::Holidays::DE',
'VERSION_FROM' => 'DE.pm', # finds $VERSION
'PREREQ_PM' => {Date::Calc => 5.0}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT => 'Determine German Holiday dates',
AUTHOR => 'Martin Schmitt <mas at scsy dot de>') : ()),
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/mschmitt/Date-Holidays-DE.git',
web => 'https://github.com/mschmitt/Date-Holidays-DE',
},
}})
: ()
),
);