File: Build.PL

package info (click to toggle)
libdatetime-format-natural-perl 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: perl: 9,587; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 1,473 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
48
# Note: this file has been initially created by Make::Build::Convert 0.20_01

use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new
  (
   module_name => 'DateTime::Format::Natural',
   dist_author => 'Steven Schubiger <schubiger@cpan.org>',
   dist_version_from => 'lib/DateTime/Format/Natural.pm',
   requires => {
                 'boolean' => 0,
                 'Carp' => 0,
                 'Clone' => 0,
                 'DateTime' => 0,
                 'DateTime::HiRes' => 0,
                 'DateTime::TimeZone' => 0,
                 'Exporter' => 0,
                 'Getopt::Long' => 0,
                 'List::Util' => '1.33',
                 'Params::Validate' => '1.15',
                 'Scalar::Util' => 0,
                 'Storable' => 0,
                 'Term::ReadLine' => 0,
               },
   test_requires => {
                      'Cwd' => 0,
                      'File::Find' => 0,
                      'File::Spec' => 0,
                      'FindBin' => 0,
                      'Module::Util' => 0,
                      'Test::MockTime::HiRes' => 0,
                      'Test::More' => 0,
                    },
   recommends => { 'Date::Calc' => 0 },
#   script_files => [ 'scripts/dateparse' ],
   license => 'perl',
   create_readme => 1,
   meta_merge => {
      resources => {
         repository => 'https://github.com/stsc/DateTime-Format-Natural',
      },
   },
  );

$build->create_build_script;