File: Makefile.PL

package info (click to toggle)
libnet-sftp-foreign-perl 1.86%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 500 kB
  • ctags: 289
  • sloc: perl: 5,644; sh: 54; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 667 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

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',
	       PREREQ_PM => { 'Test::More'   => 0,
                              'Scalar::Util' => 0,
                              'Time::HiRes'  => 0 },
               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' } }
             );