forked from asterisk-perl/asterisk-perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
27 lines (25 loc) · 771 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
use ExtUtils::MakeMaker;
my $mm_ver = ExtUtils::MakeMaker->VERSION;
WriteMakefile (
NAME => 'asterisk-perl',
AUTHOR => 'James Golovich <[email protected]>',
VERSION_FROM => 'lib/Asterisk.pm',
ABSTRACT => 'Asterisk Perl Interface',
PREREQ_PM => {
'IO::Socket' => 0,
'Digest::MD5' => 0,
'Net::Telnet' => 0
},
($mm_ver < 6.46 ? () : (META_MERGE => {
'meta-spec' => { version => 2},
dynamic_config => 1,
resources => {
repository => {
type => 'git',
url => 'https://github.com/asterisk-perl/asterisk-perl.git',
web => 'https://github.com/asterisk-perl/asterisk-perl'
},
},
})),
);
1;