-
Notifications
You must be signed in to change notification settings - Fork 59
/
Makefile.PL
76 lines (72 loc) · 3.24 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
use 5.016;
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
my $GITHUB_URL = 'https://github.com/jhthorsen/json-validator';
my @PREREQ_YAML = !$ENV{JSON_VALIDATOR_PREFER_YAML_PP}
|| eval 'use YAML::XS 0.67;1' ? ('YAML::XS' => '0.67') : ('YAML::PP' => '0.020');
my %WriteMakefileArgs = (
NAME => 'JSON::Validator',
ABSTRACT_FROM => 'lib/JSON/Validator.pm',
AUTHOR => 'Jan Henning Thorsen <[email protected]>',
LICENSE => 'artistic_2',
VERSION_FROM => 'lib/JSON/Validator.pm',
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'no_index' => {directory => [qw(examples t)]},
'prereqs' => {runtime => {requires => {perl => '5.016'}}},
'resources' => {
bugtracker => {web => "$GITHUB_URL/issues"},
homepage => $GITHUB_URL,
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {type => 'git', url => "$GITHUB_URL.git", web => $GITHUB_URL},
x_IRC => {url => 'irc://irc.libera.chat/#perl-openapi', web => 'https://web.libera.chat/#perl-openapi'},
},
'x_contributors' => [
'Aleksandr Orlenko <[email protected]>',
'Alexander Hartmaier <[email protected]>',
'Alexander Karelas <[email protected]>',
'Bernhard Graf <[email protected]>',
'Brad Barden <[email protected]>',
'Dagfinn Ilmari Mannsåker <[email protected]>',
'Daniel Böhmer <[email protected]>',
'David Cantrell <[email protected]>',
'Ed J <[email protected]>',
'Ere Maijala <[email protected]>',
'Fabrizio Gennari <[email protected]>',
'Ilya Rassadin <[email protected]>',
'Jan Henning Thorsen <[email protected]>',
'Jason Cooper <[email protected]>',
'Karen Etheridge <[email protected]>',
'Kenichi Ishigaki <[email protected]>',
'Kevin M. Goess <[email protected]>',
'Kirill Matusov <[email protected]>',
'Krasimir Berov <[email protected]>',
'Lari Taskula <[email protected]>',
'Lee Johnson <[email protected]>',
'Martin Renvoize <[email protected]>',
'Mattias Päivärinta <[email protected]>',
'Michael Jemmeson <[email protected]>',
'Michael Schout <[email protected]>',
'Mohammad S Anwar <[email protected]>',
'Nick Morrott <[email protected]>',
'Pierre-Aymeric Masse <[email protected]>',
'Roy Storey <[email protected]>',
'Russell Jenkins <[email protected]>',
'Sebastian Riedel <[email protected]>',
'Stephan Hradek <[email protected]>',
'Tim Stallard <[email protected]>',
'Zoffix Znet <[email protected]>',
],
},
PREREQ_PM => {'List::Util' => '1.45', 'Mojolicious' => '7.28', 'perl' => 'v5.16.0', @PREREQ_YAML},
TEST_REQUIRES => {'Test::More' => '1.30', 'Test::Deep' => '0'},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);
unless (eval { ExtUtils::MakeMaker->VERSION('6.63_03') }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
WriteMakefile(%WriteMakefileArgs);