forked from oetiker/qx-mojo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
27 lines (25 loc) · 838 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::Commands::generate::qx_mojo_app',
VERSION_FROM => 'lib/Mojolicious/Command/generate/qx_mojo_app.pm',
ABSTRACT => 'Mojo generator for a qooxdoo mojolicious app',
AUTHOR => 'Tobias Oetiker <[email protected]>',
LICENSE => 'artistic_2',
PREREQ_PM => {
'Mojolicious' => '5.0',
'Mojolicious::Plugin::Qooxdoo' => '0.9',
},
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
repository => 'https://github.com/oetiker/qx-mojo-app',
bugtracker => 'https://github.com/oetiker/qx-mojo-app/issues'
},
no_index => {directory => ['t']}
},
test => {TESTS => 't/*.t'}
);