-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile.PL
50 lines (49 loc) · 1.57 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Template::Flute',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Template/Flute.pm',
ABSTRACT_FROM => 'lib/Template/Flute.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
BUILD_REQUIRES => {
'Class::Load' => 0,
'HTML::Entities' => 0,
'Test::Deep' => 0,
'Test::More' => 0,
'Test::Warn' => 0,
'Test::Warnings' => 0,
'Test::Fatal' => 0,
'Hash::MultiValue' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Data::Page' => 0,
'Data::Transpose' => 0.0009,
'Path::Tiny' => 0,
'XML::Twig' => 3.48,
'HTML::TreeBuilder' => 0,
'Parse::RecDescent' => 0,
'Moo' => 1.001000,
# minimum version which supports InstanceOf
'Type::Tiny' => 0.008,
'Scalar::Util' => 0,
'URI' => 0,
'Module::Runtime' => 0,
'namespace::clean' => 0,
},
EXE_FILES => [ 'scripts/flute' ],
META_MERGE => {
resources => {
repository => 'https://github.com/racke/Template-Flute.git',
bugtracker => 'https://github.com/racke/Template-Flute/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Template-Flute-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
);