File: Build.PL

package info (click to toggle)
libtext-capitalize-perl 1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 297; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 919 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Text::Capitalize',
    license             => 'perl',
    dist_author         => q{Joseph Brenner <doom@kzsu.stanford.edu>},
    dist_version_from   => 'lib/Text/Capitalize.pm',
    build_requires => {
                       'Test::More'     => 0,
                       'FindBin'        => 1.04,
                       'lib'            => 0,
                       'Env'            => 1.00,
                       'Data::Dumper'   => 0,
                      },
    build => {
              'strict'   => 0,
              'warnings' => 0,
              'utf8'     => 0,
              'Carp'     => 0,
              'Exporter' => 0,
              'vars'     => 0,
             },
    add_to_cleanup      => [ 'Text-Capitalize-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script();