-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (30 loc) · 974 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
use strict;
use warnings;
use ExtUtils::MakeMaker 6.48;
my %options = (
NAME => 'Net::OSV',
AUTHOR => 'Breno G. de Oliveira <[email protected]>',
VERSION_FROM => 'lib/Net/OSV.pm',
ABSTRACT_FROM => 'lib/Net/OSV.pm',
MIN_PERL_VERSION => 5.020000,
LICENSE => 'perl',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Carp' => 0,
'JSON' => 0,
'HTTP::Tiny' => 0,
'IO::Socket::SSL' => 1.56,
'Net::SSLeay' => 1.49,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/garu/Net-OSV/issues/',
repository => 'https://github.com/garu/Net-OSV',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-NVD-*' },
);
WriteMakefile( %options );