forked from martin8883/MikroTik-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
42 lines (34 loc) · 876 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
35
36
37
38
39
40
41
42
use 5.006;
use strict;
use warnings FATAL => 'all';
use inc::Module::Install;
name 'MikroTik-API';
all_from 'lib/MikroTik/API.pm';
author q{Martin Gojowsky <[email protected]>};
license 'mit';
perl_version 5.006;
tests_recursive('t');
resources (
#homepage => 'http://yourwebsitehere.com',
#IRC => 'irc://irc.perl.org/#MikroTik-API',
license => 'http://www.opensource.org/licenses/mit-license.php',
repository => 'git://github.com/martin8883/MikroTik-API',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=MikroTik-API',
);
configure_requires (
'Module::Install' => 0,
);
build_requires (
'Test::More' => 0,
);
requires (
'Digest::MD5' => 0,
'IO::Socket::INET' => 0,
'IO::Socket::SSL' => 0,
'Moose' => 0,
'Time::Out' => 0,
'namespace::autoclean' => 0,
);
install_as_cpan;
auto_install;
WriteAll;