forked from companieshouse/MojoX-Plugin-PODRenderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
54 lines (48 loc) · 2.04 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
#!perl -w
###############################################################################
## ##
## Copyright (c) 2014 Companies House ##
## All rights reserved. ##
## ##
## This package is free software; you can redistribute it ##
## and/or modify it under the same terms as Perl itself. ##
## ##
###############################################################################
use strict;
use ExtUtils::MakeMaker;
BEGIN
{
eval { require Config_m; }; # ExtUtils::FakeConfig (+ ActivePerl)
eval { require Config; } # Everyone else
if ($@);
}
my( $mm ) = $ExtUtils::MakeMaker::VERSION =~ /^([^_]+)/;
WriteMakefile(
'NAME' => 'MojoX::Plugin::PODRenderer',
'VERSION_FROM' => 'lib/MojoX/Plugin/PODRenderer.pm',
'ABSTRACT_FROM' => 'lib/MojoX/Plugin/PODRenderer.pm',
'LICENSE' => 'perl',
'AUTHOR' => 'Companies House <[email protected]>',
'PREREQ_PM' => {
'Mojolicious' => '4.68',
'Pod::Simple' => '3.20',
'boolean' => '0.30',
'Class::MOP' => '2.0603',
'File::Find' => '1.20'
},
'dist' => { COMPRESS => "gzip -9", SUFFIX => "gz" },
# for ActivePerl:
($] >= 5.005 && $^O eq 'MSWin32' && $Config::Config{'archname'} =~ /-object\b/i ?
('CAPI' => 'TRUE') : ()),
( $mm < 6.46
? ()
: ( META_MERGE => {
resources => {
repository => 'https://github.com/companieshouse/MojoX-Plugin-PODRenderer',
},
no_index => { directory => [ qw/t/ ] },
},
)
),
);
__END__