-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.PL
154 lines (150 loc) · 6.26 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env perl
use 5.030;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
use Const::Fast;
const my $EUMM_VER => '6.46';
our $VERSION = '0.0.1';
WriteMakefile(
NAME => 'PWC',
AUTHOR => q{Mohammad Sajid Anwar <mohammad.anwar@yahoo.com>},
VERSION_FROM => 'lib/PWC.pm',
LICENSE => 'artistic_2',
EXE_FILES => [ 'scripts/datamigration' ],
MIN_PERL_VERSION => 5.030,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => '1.001014',
},
PREREQ_PM => {
'JSON::MaybeXS' => 0,
'File::Basename' => '2.6',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'PWC-*' },
(
eval { ExtUtils::MakeMaker->VERSION($EUMM_VER) }
? (
META_MERGE => {
'meta-spec' => { version => 2 },
provides => {
'PWC' => {
file => 'lib/PWC.pm',
version => '0.0.1',
},
'PWC::Controllers::About' => {
file => 'lib/PWC/Controllers/About.pm',
version => '0.0.1',
},
'PWC::Controllers::Auth' => {
file => 'lib/PWC/Controllers/Auth.pm',
version => '0.0.1',
},
'PWC::Controllers::FAQ' => {
file => 'lib/PWC/Controllers/FAQ.pm',
version => '0.0.1',
},
'PWC::Controllers::Home' => {
file => 'lib/PWC/Controllers/Home.pm',
version => '0.0.1',
},
'PWC::Controllers::PerlReview' => {
file => 'lib/PWC/Controllers/PerlReview.pm',
version => '0.0.1',
},
'PWC::Controllers::RakuReview' => {
file => 'lib/PWC/Controllers/RakuReview.pm',
version => '0.0.1',
},
'PWC::Controllers::Team' => {
file => 'lib/PWC/Controllers/Team.pm',
version => '0.0.1',
},
'PWC::Models::Schema' => {
file => 'lib/PWC/Models/Schema.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Challenge' => {
file => 'lib/PWC/Models/Schema/Result/Challenge.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Champion' => {
file => 'lib/PWC/Models/Schema/Result/Champion.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Contribution' => {
file => 'lib/PWC/Models/Schema/Result/Contribution.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Group' => {
file => 'lib/PWC/Models/Schema/Result/Group.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::InterviewQuestion' => {
file =>
'lib/PWC/Models/Schema/Result/IntrviewQuestion.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::InterviewResponse' => {
file =>
'lib/PWC/Models/Schema/Result/InterviewResponse.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Language' => {
file => 'lib/PWC/Models/Schema/Result/Language.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Permission' => {
file => 'lib/PWC/Models/Schema/Result/Permission.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Role' => {
file => 'lib/PWC/Models/Schema/Result/Role.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Team' => {
file => 'lib/PWC/Models/Schema/Result/Team.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::User' => {
file => 'lib/PWC/Models/Schema/Result/User.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::UserType' => {
file => 'lib/PWC/Models/Schema/Result/UserType.pm',
version => '0.0.1',
},
'PWC::Models::Schema::Result::Week' => {
file => 'lib/PWC/Models/Schema/Result/Week.pm',
version => '0.0.1',
},
'PWC::Utils' => {
file => 'lib/PWC/Utils.pm',
version => '0.0.1',
},
'PWC::Utils::DataMigration' => {
file => 'lib/PWC/Utils/DataMigration.pm',
version => '0.0.1',
},
'PWC::Utils::DataMigration::Option' => {
file => 'lib/PWC/Utils/DataMigration/Option.pm',
version => '0.0.1',
},
},
resources => {
repository => {
type => 'git',
url =>
'https://github.com/ChallengeForge/TheWeeklyChallenge.git',
web =>
'https://github.com/ChallengeForge/TheWeeklyChallenge',
},
},
},
)
: ()
),
);