-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
30 lines (29 loc) · 915 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'AnyEvent::SSH2',
AUTHOR => '扶凯 <[email protected]>',
PL_FILES => {},
LICENSE => "perl",
DISTNAME => 'AnyEvent-SSH2',
VERSION_FROM => 'lib/AnyEvent/SSH2.pm',
PREREQ_PM => {
'Test::More' => 0,
'AE' => 0,
'EV' => 0,
'Net::SSH::Perl' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'AnyEvent-SSH2-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/iakuf/AnyEvent-SSH2',
bugtracker => 'https://github.com/iakuf/AnyEvent-SSH2/issues',
license => 'http://dev.perl.org/licenses/',
},
},
);