-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
40 lines (38 loc) · 1.26 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'POE::Component::NetSNMP::agent',
license => 'perl',
dist_author => 'Sebastien Aperghis-Tramoni <sebastien@aperghis.net>',
dist_version_from => 'lib/POE/Component/NetSNMP/agent.pm',
requires => {
'Carp' => 0,
'List::MoreUtils' => 0,
'NetSNMP::agent' => 5.0000,
'parent' => 0,
'POE' => 0.3502,
'SNMP' => 5.0000,
'SNMP::ToolBox' => 0.01,
'version' => 0,
},
build_requires => {
'Test::More' => 0,
},
configure_requires => {
'Module::Build' => 0.38,
},
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",
#}
},
},
add_to_cleanup => [ 'POE-Component-NetSNMP-agent-*' ],
);
$builder->create_build_script();