File: Build.PL

package info (click to toggle)
libtest-kwalitee-perl 1.01-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 88 kB
  • ctags: 2
  • sloc: perl: 150; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 622 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
#!perl

BEGIN { require 5.006002 }
use Module::Build;

my $build = Module::Build->new(
    dist_abstract => 'Test the quality of your distribution, automatically!',
    module_name   => 'Test::Kwalitee',
    license       => 'perl',
    requires      =>
    {
        'perl'                      => '5.6.2',
        'Test::Simple'              =>  '0.47',
        'Module::CPANTS::Analyse'   =>  '0.82',
    },
    meta_merge   =>
    {
        resources =>
        {
            repository => 'http://onyxneon.svnrepository.com/svn/chromatic_cpan/trunk/Test-Kwalitee/',
        }
    }
);

$build->create_build_script();