-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
37 lines (34 loc) · 1 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Cron::Sequencer',
VERSION_FROM => 'lib/Cron/Sequencer.pm',
AUTHOR => 'Nicholas Clark <[email protected]>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.20.0',
PREREQ_PM => {
'Algorithm::Cron' => 0,
'DateTime' => 0,
'DateTime::Format::ISO8601' => 0,
'JSON::MaybeXS' => 0,
'Try::Tiny' => 0,
},
TEST_REQUIRES => {
'Test::Deep' => 0,
'Test::Fatal' => 0,
'Test::More' => 0,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/module/Cron::Sequencer',
bugtracker => 'https://github.com/Humanstate/cron-sequencer/issues',
repository => 'https://github.com/Humanstate/cron-sequencer'
},
},
EXE_FILES => [
'bin/cron-sequencer',
],
);