forked from salva/p5-Net-SFTP-Foreign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
19 lines (16 loc) · 736 Bytes
/
Makefile.PL
File metadata and controls
19 lines (16 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile( NAME => 'Net::SFTP::Foreign',
VERSION_FROM => 'lib/Net/SFTP/Foreign.pm',
AUTHOR => 'Salvador Fandino <sfandino@yahoo.com>',
ABSTRACT => 'Secure File Transfer Protocol client',
LICENSE => 'perl',
PREREQ_PM => { 'Test::More' => 0,
'Scalar::Util' => 0,
'Time::HiRes' => 0 },
MIN_PERL_VERSION => 5.006,
META_MERGE =>
{ resources =>
{ repository => 'http://github.com/salva/p5-Net-SFTP-Foreign',
bugtracker => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Net-SFTP-Foreign' } }
);