-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
39 lines (37 loc) · 1.34 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
35
36
37
38
39
#!/usr/bin/perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'POE::Component::NetSNMP::agent',
LICENSE => 'perl',
AUTHOR => 'Sebastien Aperghis-Tramoni <sebastien@aperghis.net>',
VERSION_FROM => 'lib/POE/Component/NetSNMP/agent.pm',
ABSTRACT_FROM => 'lib/POE/Component/NetSNMP/agent.pm',
PREREQ_PM => {
# prereqs
'Carp' => 0,
'List::MoreUtils' => 0,
'NetSNMP::agent' => 5.0000,
'parent' => 0,
'POE' => 0.3502,
'SNMP' => 5.0000,
'SNMP::ToolBox' => 0.01,
'version' => 0,
# build/test prereqs
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => "https://github.com/maddingue/POE-Component-NetSNMP-agent",
#{
# type => "git",
# url => "git://github.com/maddingue/POE-Component-NetSNMP-agent.git",
# web => "https://github.com/maddingue/POE-Component-NetSNMP-agent",
#}
},
},
PL_FILES => {},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'POE-Component-NetSNMP-agent-*' },
);