forked from memowe/contenticious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
56 lines (49 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
install_share dist => 'share';
WriteMakefile(
NAME => 'Contenticious',
VERSION_FROM => 'lib/Contenticious.pm',
ABSTRACT => 'build web sites from markdown files',
AUTHOR => 'Mirko Westermeier <[email protected]>',
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',
'Cwd' => '3.62',
'File::Basename' => '2.76',
'File::Copy' => '2.11',
'File::Path' => '2.04',
'File::Spec' => '3.62',
'FindBin' => '1.49',
'List::Util' => '1.19',
# non-trivial dependencies
'File::Copy::Recursive' => '0.38',
'File::Share' => '0.25',
'Mojolicious' => '8.05',
'Mojolicious::Plugin::AssetPack' => '1.45',
'Mojolicious::Plugin::PODViewer' => '0.004',
'Mojolicious::Plugin::RelativeUrlFor' => '0.052',
'Mojolicious::Plugin::Subdispatch' => '0.04',
'Text::Markdown' => '1.000031',
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
'File::ShareDir::Install' => '0.13',
},
EXE_FILES => ['contenticious'],
test => {TESTS => 't/*.t'}
);
package MY;
use File::ShareDir::Install 'postamble';