-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
42 lines (38 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $choice = 'Builder'; # API2 or Builder default prerequisite?
my $debug = 0; # 1 to just dump contents
my %WriteMakefileArgs = (
NAME => 'CtrlO::PDF',
AUTHOR => q{Andy Beverley <[email protected]>},
VERSION_FROM => 'lib/CtrlO/PDF.pm',
ABSTRACT_FROM => 'lib/CtrlO/PDF.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
BUILD_REQUIRES => {
'Test::MockObject' => 0,
'Test::More' => 0,
'Test::Warn' => 0,
'DateTime::Format::SQLite' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Image::Info' => 0,
'Moo' => 0,
'MooX::Types::MooseLike::Base' => 0,
'PDF::Builder' => 3.025,
'PDF::Table' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'CtrlO-PDF*' },
META_MERGE => {
resources => {
repository => 'https://github.com/ctrlo/CtrlO-PDF',
bugtracker => 'https://github.com/ctrlo/CtrlO-PDF/issues',
homepage => 'https://github.com/ctrlo/CtrlO-PDF/',
},
},
);
WriteMakefile(%WriteMakefileArgs);