File: Build.PL

package info (click to toggle)
libdata-show-perl 0.004002-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 212 kB
  • sloc: perl: 550; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Data::Show',
    license             => 'perl',
    dist_author         => 'Damian Conway <DCONWAY@CPAN.org>',
    dist_version_from   => 'lib/Data/Show.pm',
    requires => {
        'Test::More' => 0,
        'Data::Dump' => 1.17,
        'PPR'        => 0.001009,
        'version'    => 0,
    },
    add_to_cleanup      => [ 'Data-Show-*' ],
);

$builder->create_build_script();