-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
45 lines (43 loc) · 1.47 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
41
42
43
44
45
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'SNMP::Extension::PassPersist',
license => 'perl',
dist_author => 'Sebastien Aperghis-Tramoni <sebastien@aperghis.net>',
dist_version_from => 'lib/SNMP/Extension/PassPersist.pm',
requires => {
'perl' => '5.006',
'Carp' => 0,
'Class::Accessor' => '0.30',
'File::Basename' => 0,
'Getopt::Long' => '2.04',
'IO::Handle' => '1.15',
'IO::Pipe' => '1.12',
'IO::Select' => '1.10',
'List::MoreUtils' => '0.21',
'parent' => '0.221',
'Sys::Syslog' => 0,
},
recommends => {
'Sort::Key::OID' => '0.04',
},
build_requires => {
'File::Temp' => '0.14',
'IO::File' => '1.05',
'IO::String' => '1.00',
'Test::More' => '0.45',
},
meta_merge => {
resources => {
repository => "https://github.com/maddingue/SNMP-Extension-PassPersist",
#{
# type => "git",
# url => "git://github.com/maddingue/SNMP-Extension-PassPersist.git",
# web => "https://github.com/maddingue/SNMP-Extension-PassPersist",
#}
},
},
add_to_cleanup => [ 'SNMP-Extension-PassPersist-*' ],
);
$builder->create_build_script();