File: Build.PL

package info (click to toggle)
liberror-perl 0.17-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 196 kB
  • ctags: 63
  • sloc: perl: 1,056; makefile: 38
file content (19 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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",
    'requires'    => 
    {
        'Scalar::Util' => 0,
    },
    'license'  => "perl",
    'dist_abstract' => 'Error/exception handling in an OO-ish way',
    'dist_author'   => 'Graham Barr <gbarr@pobox.com>',
);
$build->create_build_script;