forked from memowe/contenticious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
40 lines (35 loc) · 1.43 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Contenticious',
VERSION_FROM => 'lib/Contenticious.pm',
ABSTRACT => 'build web sites from markdown files',
AUTHOR => 'Mirko Westermeier <mail@memowe.de>',
LICENSE => 'mit',
META_MERGE => {
resources => {
homepage => 'http://memowe.github.com/contenticious/',
bugtracker => 'http://github.com/memowe/contenticious/issues',
repository => 'http://github.com/memowe/contenticious',
},
},
MIN_PERL_VERSION => '5.10.1',
PREREQ_PM => {
# core modules since 5.10
'Carp' => '1.08',
'File::Basename' => '2.76',
'File::Path' => '2.04',
'FindBin' => '1.49',
'List::Util' => '1.19',
# non-trivial dependencies
'File::Copy::Recursive' => '0.38',
'Mojolicious' => '2.70',
'Mojolicious::Plugin::Subdispatch' => '0.02',
'Mojolicious::Plugin::RelativeUrlFor' => '0.01',
'Text::Markdown' => '1.000031',
},
EXE_FILES => ['contenticious'],
test => {TESTS => 't/*.t'}
);