-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
27 lines (25 loc) · 858 Bytes
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Any::Renderer::Data::Printer',
AUTHOR => q{Kevin McGrath <[email protected]>},
VERSION_FROM => 'lib/Any/Renderer/Data/Printer.pm',
ABSTRACT_FROM => 'lib/Any/Renderer/Data/Printer.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Any::Renderer' => 1.014,
'Data::Printer' => 0.18,
},
META_MERGE => {
resources => {
repository => 'https://github.com/kmcgrath/perl5-Any-Renderer-Data-Printer',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Any-Renderer-Data-Printer-*' },
);