-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
41 lines (40 loc) · 1.39 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Interchange6',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Interchange6.pm',
ABSTRACT => 'Interchange6 Open Source Shop Machine',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
MIN_PERL_VERSION => '5.010000',
PL_FILES => {},
BUILD_REQUIRES => {
'aliased' => 0,
'Test::More' => 0,
'Test::Exception' => 0,
# warning feature was introduced in this release (GH #25)
'Test::Warnings' => '0.005',
},
PREREQ_PM => {
'namespace::clean' => 0,
'Module::Runtime' => 0,
'Moo' => '1.006000',
'MooseX::CoverableModifiers' => 0.30,
'MooX::HandlesVia' => 0,
'Safe::Isa' => 0,
'Type::Tiny' => '0.038',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Interchange6-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
META_MERGE => {
resources => {
repository => 'https://github.com/interchange/Interchange6.git',
bugtracker => 'https://github.com/interchange/Interchange6/issues',
IRC => 'irc://irc.freenode.net/#interchange',
},
},
);