File: Build.PL

package info (click to toggle)
libpod-coverage-perl 0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 212 kB
  • ctags: 113
  • sloc: perl: 584; makefile: 43
file content (18 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use Module::Build;

Module::Build
  ->new( module_name => "Pod::Coverage",
         license     => 'perl',
         script_files => [ 'bin/pod_cover' ],
         build_requires => {
             'Test::More'       => 0,
         },
         requires    => {
             'Devel::Symdump' => 2.01,
             'Pod::Parser'    => 1.13,
             'Pod::Find'      => 0.21,
         },
         create_makefile_pl => 'traditional',
       )
  ->create_build_script;