-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
43 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
42
43
use strict;
use warnings;
use ExtUtils::MakeMaker;
# Normalize version strings like 6.30_02 to 6.3002,
# so that we can do numerical comparisons on it.
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version =~ s/_//;
WriteMakefile(
NAME => 'TableEdit',
AUTHOR => q{YOUR NAME <[email protected]>},
VERSION_FROM => 'lib/TableEdit.pm',
ABSTRACT => 'YOUR APPLICATION ABSTRACT',
($eumm_version >= 6.3001
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::Most' => 0,
'Test::Database' => 0,
'Test::DBIx::Class' => 0,
'YAML' => 0,
'Class::Load' => 0,
'Class::Method::Modifiers' => 0,
'DBD::SQLite' => 1.38_01,
# we rely on deep configuration merging
'Dancer' => 1.3127,
'Dancer::Plugin::DBIC' => 0,
'Dancer::Plugin::Auth::Extensible' => 0,
'Template' => 0,
'DBIx::Class::Schema::Loader' => 0,
# default session engine in config.yml
'Dancer::Session::Storable' => 0,
'Moo' => 0,
'Type::Tiny' => 0,
'Plack::Handler::Starman' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'TableEdit-*' },
test => { TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
);