File: Build.PL

package info (click to toggle)
liberror-perl 0.17024-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 256 kB
  • ctags: 61
  • sloc: perl: 1,118; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 846 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
26
27
28
29
30
31
32
33
34
35
36
use strict;
use warnings;

use File::Spec;
use lib File::Spec->catdir(File::Spec->curdir(), "inc");

use Test::Run::Builder;

my $build = Test::Run::Builder->new(
    'module_name' => "Error",
    configure_requires => { 'Module::Build' => '0.280801', },
    'requires'    =>
    {
        'Scalar::Util' => 0,
        'perl' => "5.6.0",
        'strict' => 0,
        'warnings' => 0,
    },
    'license'  => "perl",
    'dist_abstract' => 'Error/exception handling in an OO-ish way',
    'dist_author'   => 'Shlomi Fish ( http://www.shlomifish.org/ )',
    meta_merge =>
    {
        resources =>
        {
            repository => "https://bitbucket.org/shlomif/perl-error.pm",
        },
        keywords =>
        [
            "deprecated",
            "exceptions",
            "oop",
        ],
    },
);
$build->create_build_script;