forked from jasontang/net-stomp
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Build.PL
28 lines (27 loc) · 803 Bytes
/
Build.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
#!perl
use Module::Build;
use strict;
use warnings;
my $build = Module::Build->new(
create_makefile_pl => 'traditional',
license => 'perl',
module_name => 'Net::Stomp',
requires => {
'IO::Socket::INET' => '0',
'IO::Select' => '0',
'Class::Accessor::Fast' => '0',
'Log::Any' => '1.707',
},
test_requires => {
'Test::More' => '0',
'Test::Deep' => '0',
'Test::Fatal' => '0',
'Log::Any::Adapter::TAP' => '0.003003',
'Test::NiceDump' => '1.0.0',
},
recommends => {
'IO::Socket::IP' => '0.20',
'IO::Socket::SSL' => '1.75',
},
);
$build->create_build_script;