-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
43 lines (41 loc) · 1.23 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
36
37
38
39
40
41
42
43
#! /usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Date::Holidays::AU',
AUTHOR => 'David Dick <[email protected]>',
VERSION_FROM => 'lib/Date/Holidays/AU.pm',
ABSTRACT_FROM => 'lib/Date/Holidays/AU.pm', # retrieve abstract from module
( $ExtUtils::MakeMaker::VERSION >= 6.3002
? ( 'LICENSE' => 'perl' )
: () ),
(
$ExtUtils::MakeMaker::VERSION >= 6.48
? ( 'MIN_PERL_VERSION' => '5.006' )
: ()
),
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
url => 'https://github.com/david-dick/date-holidays-au.git',
web => 'https://github.com/david-dick/date-holidays-au',
type => 'git',
},
bugtracker => {
web => 'https://github.com/david-dick/date-holidays-au/issues',
},
},
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Time::Local' => 1.28,
'Date::Easter' => 0,
'Carp' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Date-Holidays-AU-*' },
);