-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.PL
More file actions
62 lines (59 loc) · 1.6 KB
/
Makefile.PL
File metadata and controls
62 lines (59 loc) · 1.6 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'GraphQL::Plugin::Convert::DBIC',
AUTHOR => q{Ed J <etj@cpan.org>},
VERSION_FROM => 'lib/GraphQL/Plugin/Convert/DBIC.pm',
ABSTRACT_FROM => 'lib/GraphQL/Plugin/Convert/DBIC.pm',
LICENSE => 'artistic_2',
MIN_PERL_VERSION => '5.014',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64', # TEST_REQUIRES
},
TEST_REQUIRES => {
'Test::More' => '0.98',
'DBIx::Class::Schema' => 0,
'DBD::SQLite' => 0,
'Test::Snapshot' => '0.05',
'JSON::MaybeXS' => 0,
},
PREREQ_PM => {
'DBIx::Class::Schema' => 0,
'GraphQL' => '0.34', # List->name
'SQL::Translator' => '0',
'Lingua::EN::Inflect::Number' => '0',
},
clean => { FILES => 'GraphQL-Plugin-Convert-DBIC-*' },
META_MERGE => {
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
x_IRC => 'irc://irc.perl.org/#graphql-perl',
repository => {
type => 'git',
url => 'git@github.com:graphql-perl/GraphQL-Plugin-Convert-DBIC.git',
web => 'https://github.com/graphql-perl/GraphQL-Plugin-Convert-DBIC',
},
bugtracker => {
web => 'https://github.com/graphql-perl/GraphQL-Plugin-Convert-DBIC/issues',
},
license => [ 'http://dev.perl.org/licenses/' ],
},
prereqs => {
develop => {
requires => {
'Test::Pod' => '1.22',
'Pod::Markdown' => 0,
},
},
},
},
);
sub MY::postamble {
<<EOF;
pure_all :: README.md
README.md : \$(VERSION_FROM)
\tpod2markdown \$< >\$\@
EOF
}