-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
32 lines (30 loc) · 969 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;
my $makemakerversion = $ExtUtils::MakeMaker::VERSION;
$makemakerversion =~s/_//g;
WriteMakefile(
NAME => 'Net::ASN',
AUTHOR => 'David J. Freedman <[email protected]>',
VERSION_FROM => 'lib/Net/ASN.pm',
ABSTRACT_FROM => 'lib/Net/ASN.pm',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/lochiiconnectivity/netasn.git',
web => 'https://github.com/lochiiconnectivity/netasn',
},
},
},
($makemakerversion >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-ASN-*' },
);