-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
23 lines (23 loc) · 949 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
use 5.008004;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'SNMP::Trapinfo',
VERSION_FROM => 'lib/SNMP/Trapinfo.pm', # finds $VERSION
LICENSE => 'perl_5',
PREREQ_PM => { File::Temp => 0.05, Safe => 2.11 }, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/SNMP/Trapinfo.pm', # retrieve abstract from module
AUTHOR => 'Ton Voon <ton.voon@opsview.com>') : ()),
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/tonvoon/perl-snmp-trapinfo.git',
web => 'https://github.com/tonvoon/perl-snmp-trapinfo',
},
},
},
);