forked from bigpresh/Dancer-Plugin-SimpleCRUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
31 lines (29 loc) · 1.09 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::SimpleCRUD',
AUTHOR => q{David Precious <[email protected]>},
VERSION_FROM => 'lib/Dancer/Plugin/SimpleCRUD.pm',
ABSTRACT_FROM => 'lib/Dancer/Plugin/SimpleCRUD.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Dancer' => 1.3,
'Dancer::Plugin::Database' => 1.00,
'HTML::Table::FromDatabase' => 1.10,
'CGI::FormBuilder' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-SimpleCRUD-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD',
bugtracker => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD/issues',
homepage => 'https://github.com/bigpresh/Dancer-Plugin-SimpleCRUD/wiki/Quick-intro',
},
},
);