File: Makefile.PL

package info (click to toggle)
libnet-tftp-perl 0.18-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 104 kB
  • ctags: 37
  • sloc: perl: 558; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
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
# This -*- perl -*- script makes the Makefile
# $Id: //depot/asn/Makefile.PL#5 $

use 5.005;
use ExtUtils::MakeMaker;

WriteMakefile(
  VERSION_FROM  => 'TFTP.pm',
  NAME          => 'Net::TFTP',
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (
      META_MERGE => {
        resources => {    ##
          repository => 'http://github.com/gbarr/perl-net-tftp',
        },
        build_requires => {
          'Test::More' => 0.8701,
          'Test::MockModule' => 0,
          'Test::Warn' => 0,
        },
      }
      )
    : ()
  ),
);