-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.PL
30 lines (30 loc) · 953 Bytes
/
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
use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'DataTables',
'VERSION_FROM' => 'lib/DataTables.pm', # finds $VERSION
'PREREQ_PM' => {
'CGI::Simple' => '1.113',
'DBI' => 1.611,
'JSON::XS' => 2.32,
'Carp' => 0.00,
'ExtUtils::MakeMaker' => '6.64',
'JQuery::DataTables::Request' => '0.109',
'SQL::Abstract::Limit' => '0.13',
}, # e.g., Module::Name => 1.1
'TEST_REQUIRES' => {
'Data::Compare' => 1.23,
'Test::More' => 0,
'DBD::SQLite' => 0,
},
'AUTHOR' => 'Adam Hopkins <[email protected]>',
'LICENSE' => 'perl_5',
'META_MERGE' => {
'resources' => {
'repository' => 'https://github.com/srchulo/DataTables',
},
},
'MIN_PERL_VERSION' => 5.008008,
);