File: Build.PL

package info (click to toggle)
libtie-dxhash-perl 1.05-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 156 kB
  • sloc: perl: 108; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 440 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Tie::DxHash',
    license             => 'perl',
    dist_author         => 'Kevin Ruscoe <kevin@sapphireoflondon.org>',
    dist_version_from   => 'lib/Tie/DxHash.pm',
    requires => {
        'Test::More' => 0,
        'version'    => 0,
    },
    add_to_cleanup      => [ 'Tie-DxHash-*' ],
);

$builder->create_build_script();