File: Build.PL

package info (click to toggle)
libdata-page-pageset-perl 1.02-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 88 kB
  • sloc: perl: 167; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Data::Page::Pageset',
    license             => 'perl',
    dist_author         => 'Chunzi <me@chunzi.org>',
    dist_version_from   => 'lib/Data/Page/Pageset.pm',
    requires => { 'Test::More' => 0,
                  'Test::Exception' => 0,
                  'Data::Page' => 2,
                  'Class::Accessor' => 0,
                  Carp => 0,
                  },
    add_to_cleanup      => [ 'Data-Page-Pageset-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script;