forked from jfraire/Device-Modbus-TCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
31 lines (30 loc) · 778 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
use ExtUtils::MakeMaker;
use strict;
use warnings;
WriteMakefile(
NAME => 'Device::Modbus::TCP',
VERSION_FROM => 'lib/Device/Modbus/TCP.pm',
PREREQ_PM => {
'Device::Modbus' => 0.02,
'Try::Tiny' => 0.22,
'Role::Tiny' => 2.0,
'Net::Server' => 2.008,
},
BUILD_REQUIRES => {
},
ABSTRACT_FROM => 'lib/Device/Modbus/TCP.pm',
AUTHOR => 'Julio Fraire <[email protected]>',
LICENSE => 'artistic_2',
META_MERGE => {
'meta-spec' => {
version => 2,
},
resources => {
repository => {
type => 'git',
url => 'https://github.com/jfraire/Device-Modbus-TCP.git',
web => 'https://github.com/jfraire/Device-Modbus-TCP',
},
},
},
);