forked from racke/Template-Flute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
34 lines (33 loc) · 1.1 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
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 => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Warn' => 0,
'Test::Fatal' => 0,
'File::Slurp' => 0,
'XML::Twig' => 0,
'HTML::TreeBuilder' => 0,
'Parse::RecDescent' => 0,
'Moo' => 0,
'Scalar::Util' => 0,
},
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')))},
);