File: Build.PL

package info (click to toggle)
libpdf-writer-perl 0.06-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 108 kB
  • ctags: 38
  • sloc: perl: 372; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 500 bytes parent folder | download | duplicates (3)
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
use Module::Build;

use 5.6.0;

use strict;
use warnings;

my $build = Module::Build->new(
    module_name => 'PDF::Writer',
    license => 'perl',
    requires => {
        'perl'               => '5.6.0',
    },
    optional => {
    },
    build_requires => {
        'Test::More'           => '0.47',
    },
    create_makefile_pl => 'traditional',
    recursive_test_files => 1,
    add_to_cleanup => [
        'META.yml', '*.bak', '*.gz', 'Makefile.PL',
    ],
);

$build->create_build_script;