forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
27 lines (24 loc) · 824 Bytes
/
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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious',
VERSION_FROM => 'lib/Mojolicious.pm',
ABSTRACT => 'Real-time web framework',
AUTHOR => 'Sebastian Riedel <[email protected]>',
LICENSE => 'artistic_2',
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
homepage => 'http://mojolicio.us',
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
MailingList => 'http://groups.google.com/group/mojolicious',
repository => 'http://github.com/kraih/mojo',
bugtracker => 'http://github.com/kraih/mojo/issues'
},
no_index => {directory => ['t']}
},
EXE_FILES => ['script/hypnotoad', 'script/mojo', 'script/morbo'],
test => {TESTS => 't/*.t t/*/*.t'}
);