forked from damil/SQL-Abstract-More
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
44 lines (35 loc) · 989 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use 5.008;
use strict;
use warnings FATAL => 'all';
use inc::Module::Install;
name 'SQL-Abstract-More';
all_from 'lib/SQL/Abstract/More.pm';
author q{Laurent Dami <[email protected]>};
license 'artistic2';
perl_version 5.008;
tests_recursive('t');
resources (
homepage => 'https://metacpan.org/author/DAMI',
license => 'http://www.perlfoundation.org/artistic_license_2_0',
repository => 'git://github.com/damil/SQL-Abstract-More.git',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract-More',
);
configure_requires (
'Module::Install' => 0,
);
test_requires (
'Test::More' => 0,
'Test::Exception' => 0,
'SQL::Abstract::Test' => 0,
'List::MoreUtils' => 0,
);
requires (
'MRO::Compat' => 0,
'SQL::Abstract' => 1.73,
'Params::Validate' => 0,
'parent' => 0,
'namespace::clean' => 0,
);
install_as_cpan;
auto_install;
WriteAll;