File: Build.PL

package info (click to toggle)
libtest-differences-perl 0.61-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 144 kB
  • sloc: perl: 300; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 639 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Test::Differences',
    license           => 'perl',
    dist_author       => 'Curtis "Ovid" Poe <ovid@cpan.org>',
    dist_version_from => 'lib/Test/Differences.pm',
    perl              => 5.006,
    requires          => {
        'Test::More'   => 0,
        'Text::Diff'   => 0.35,
        'Data::Dumper' => 2.126,
    },
    add_to_cleanup => ['Test-Differences-*'],
    meta_merge     => {
        resources =>
          { repository => 'https://github.com/Ovid/Test-Differences' }
    },
);

$builder->create_build_script();