File: Build.PL

package info (click to toggle)
libtext-table-perl 1.123-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 152 kB
  • ctags: 58
  • sloc: perl: 633; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 1,072 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
37
38
39
40
41
42
43
44
45
46
47
use strict;
use warnings;

use lib './inc';

use Test::Run::Builder;

my $builder = Test::Run::Builder->new(
    module_name         => 'Text::Table',
    license             => 'bsd',
    dist_author         => 'Shlomi Fish <shlomif@cpan.org>',
    dist_version_from   => 'lib/Text/Table.pm',
    configure_requires =>
    {
        'Module::Build' => 0.36,
    },
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'strict' => 0,
        'warnings' => 0,
        'Text::Aligner' => '0.05',
    },
    add_to_cleanup      => [ 'Text-Table-*' ],
    create_makefile_pl => 'traditional',
    meta_merge =>
    {
        resources =>
        {
            repository => "https://github.com/shlomif/Text-Table",
            homepage => "http://www.shlomifish.org/open-source/projects/docmake/",
        },
        keywords =>
        [
            "art",
            "ascii",
            "asciiart",
            "borders",
            "table",
            "text",
            "unicode",
        ],
    },
);

$builder->create_build_script();