forked from convos-chat/convos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
51 lines (49 loc) · 1.93 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
# Generated by git-ship. See 'git-ship --man' for help or https://github.com/jhthorsen/app-git-ship
use utf8;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
NAME => 'Convos',
AUTHOR => 'Jan Henning Thorsen <jhthorsen@cpan.org>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/Convos.pm',
VERSION_FROM => 'lib/Convos.pm',
EXE_FILES => [qw(script/convos)],
BUILD_REQUIRES => {},
TEST_REQUIRES => {'Test::Deep' => '0.11', 'Test::More' => '0.88'},
PREREQ_PM => {
'Crypt::Eksblowfish' => '0.009',
'File::HomeDir' => '1.00',
'File::ReadBackwards' => '1.05',
'IO::Socket::SSL' => '2.009',
'IRC::Utils' => '0.12',
'JSON::Validator' => '3.24',
'LinkEmbedder' => '1.12',
'Mojolicious' => '8.35',
'Mojolicious::Plugin::OpenAPI' => '3.30',
'Mojolicious::Plugin::Webpack' => '0.12',
'Parse::IRC' => '1.22',
'Time::Piece' => '1.20',
'Unicode::UTF8' => '0.62',
},
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/Nordaaker/convos/issues'},
homepage => 'https://github.com/Nordaaker/convos',
repository => {
type => 'git',
url => 'https://github.com/Nordaaker/convos.git',
web => 'https://github.com/Nordaaker/convos',
},
},
'x_contributors' =>
['Jan Henning Thorsen <jhthorsen@cpan.org>', 'Marcus Ramberg <marcus@nordaaker.com>'],
},
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);