/usr/local/CPAN/Rosetta/Makefile.PL


#!perl
use 5.008001;
use utf8;
use strict;
use warnings;

warn q{
---------------------------------------------------------------------------
    Please ignore any test failures when installing the 'only' module, which
    this distribution depends on; 'only' still works correctly for my needs.

    You can also ignore any warnings during installation about the use of
    "=encoding utf8" in the pod documentation.

    Continuing in 3 seconds...
---------------------------------------------------------------------------
};
sleep 3;

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME' => 'Rosetta',
    'VERSION_FROM' => 'lib/Rosetta.pm', # finds $VERSION
    'ABSTRACT' => 'Rigorous database portability',
    'AUTHOR' => 'Darren R. Duncan <perl@DarrenDuncan.net>',
#    'LICENSE' => 'gpl',
    'PREREQ_PM' => {
        # These mainly add features to Perl 5 that are built-in to Perl 6.
        'version' => 0.57,
        'only' => 0,
        'Readonly' => 1.03,
        'Class::Std' => 0.000008,
        'Class::Std::Utils' => 0.000002,
        'Scalar::Util' => 0,
        'Parse::RecDescent' => 1.94,
        # These are used in both the Perl 5 and Perl 6 versions.
        'Locale::KeyedText' => 1.072000,
        # These mainly are for the test suite.
        'Test::More' => 0,
    },
);

1; # Magic true value required at end of a reuseable file's code.