File: Makefile.PL

package info (click to toggle)
libdatetime-format-oracle-perl 0.06-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96 kB
  • sloc: perl: 75; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'DateTime::Format::Oracle',
    AUTHOR        => 'Nathan Gray <kolibrie@cpan.org>',
    VERSION_FROM  => 'lib/DateTime/Format/Oracle.pm',
    ABSTRACT_FROM => 'lib/DateTime/Format/Oracle.pm',
    LICENSE       => 'perl',
    PL_FILES      => {},
    PREREQ_PM     => {
        'Test::More'                => 0,
        'DateTime'                  => 0,
        'DateTime::Format::Builder' => 0,
	'Convert::NLS_DATE_FORMAT'  => 0.03,
    },
);