File: Makefile.PL

package info (click to toggle)
libdate-extract-perl 0.05-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 192 kB
  • ctags: 148
  • sloc: perl: 2,118; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 456 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
# Load the Module::Install bundled in ./inc/
use inc::Module::Install;

# Define metadata
name           'Date-Extract';
all_from       'lib/Date/Extract.pm';

requires       'List::Util';
requires       'Carp';

# 0.60 adds time zone handling
requires       'DateTime::Format::Natural' => '0.60';

requires       'parent';
requires       'Class::Data::Inheritable';

build_requires 'Test::More';
build_requires 'Test::MockTime';

auto_install;
WriteAll;