File: Makefile.PL

package info (click to toggle)
libpod-coverage-trustpod-perl 0.092830-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 112 kB
  • ctags: 14
  • sloc: perl: 145; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 536 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

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'Pod-Coverage-TrustPod',
  NAME      => 'Pod::Coverage::TrustPod',
  AUTHOR    => 'Ricardo\ SIGNES\ \<rjbs\@cpan\.org\>',
  ABSTRACT  => 'allow\ a\ module\'s\ pod\ to\ contain\ Pod\:\:Coverage\ hints',
  VERSION   => '0.092830',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "Pod::Coverage" => '0',
    "Pod::Eventual::Simple" => '0',
  },
  test => {TESTS => 't/*.t'}
);