forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
43 lines (40 loc) · 1.38 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
# JSON::PP 2.27103 first shipped with Perl 5.13.9
# Time::Local 1.2 first shipped with Perl 5.13.9
# List::Util 1.41 first shipped with Perl 5.21.4
# IO::Socket::IP 0.37 first shipped with Perl 5.21.11
WriteMakefile(
NAME => 'Mojolicious',
VERSION_FROM => 'lib/Mojolicious.pm',
ABSTRACT => 'Real-time web framework',
AUTHOR => 'Sebastian Riedel <[email protected]>',
LICENSE => 'artistic_2',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => {version => 2},
no_index => {directory => ['examples', 't']},
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
bugtracker => {web => 'https://github.com/mojolicious/mojo/issues'},
homepage => 'https://mojolicious.org',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {
type => 'git',
url => 'https://github.com/mojolicious/mojo.git',
web => 'https://github.com/mojolicious/mojo',
},
x_IRC => 'irc://irc.freenode.net/#mojo'
},
},
PREREQ_PM => {
'IO::Socket::IP' => '0.37',
'List::Util' => '1.41',
'JSON::PP' => '2.27103',
'Time::Local' => '1.2'
},
EXE_FILES => ['script/hypnotoad', 'script/mojo', 'script/morbo'],
test => {TESTS => 't/*.t t/*/*.t'}
);