forked from oetiker/callbackery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
34 lines (32 loc) · 1.11 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'CallBackery',
VERSION_FROM => 'lib/CallBackery.pm',
ABSTRACT => 'CallBackery is a Mojolicious+Qoodoo Framework for building Web Applications',
AUTHOR => 'Tobias Oetiker <[email protected]>',
LICENSE => 'gpl_3',
PREREQ_PM => {
'Mojolicious' => '6.17',
'Mojolicious::Plugin::Qooxdoo' => '0.904',
'Locale::PO' => '0.24',
'Config::Grammar' => '1.10',
'Mojo::SQLite' => '0.011',
'PPI' => '0',
},
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
license => 'http://opensource.org/licenses/GPL-3.0',
repository => 'https://github.com/oetiker/callbackery',
bugtracker => 'https://github.com/oetiker/callbackery/issues'
},
no_index => {directory => ['t','example','setup','lib/Mojolicious/Command/generate/callbackery_app']}
},
dist => {
PREOP => q{$(PERL) -i -p -e 's/CallBackery\@\d+(\.\d+){2}/CallBackery\@$(VERSION)/g' lib/Mojolicious/Command/generate/callbackery_app/PERL_MODULES}
},
test => {TESTS => 't/*.t'}
);