forked from SetupRu/mojox-transaction-websocket76
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
34 lines (30 loc) · 942 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
28
29
30
31
32
33
34
#!/usr/bin/env perl
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MojoX::Transaction::WebSocket76',
AUTHOR => 'Denis Ibaev <[email protected]>',
VERSION_FROM => 'lib/MojoX/Transaction/WebSocket76.pm',
ABSTRACT_FROM => 'lib/MojoX/Transaction/WebSocket76.pm',
LICENSE => 'perl',
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'http://github.com/dionys/mojox-transaction-websocket76',
bugtracker => 'http://github.com/dionys/mojox-transaction-websocket76/issues',
},
no_index => {directory => ['t']},
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Mojolicious' => '2.52',
},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
clean => {FILES => 'MojoX-Transaction-WebSocket76-*'},
test => {TESTS => 't/*.t'},
);