CGI-Uploader

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

}


sub Usage {
  print STDERR <<"USAGE";
Usage: perl $0 [options]

Possible options are:

  --testdsn=<dsn>         Use the DBI datasource <dsn> for running the test suite

      Postgres Example:
       dbi:Pg:dbname=\$db;host=\$host;username=\$user;password=\$pw

      MySQL Example:
       DBI:mysql:database=\$db;host=\$hostname

 --testuser=<user>

 --testpassword=<password>

  --help                 Print this message and exit

  Tables named "uploads" and "cgi_uploader_test"  will be created and then
  removed.  If a table by that name already exists, the tests will be skipped.

USAGE
  exit 1;
}



use 5.008;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'      => 'CGI::Uploader',
     AUTHOR     => 'Mark Stosberg <mark@summersault.com>',
    'VERSION_FROM'  => 'lib/CGI/Uploader.pm', # finds $VERSION
    'PREREQ_PM'     => {
        'Carp::Assert'        => 0,
        'CGI::Carp'           => 0,
        'Digest::MD5'         => 0,
        'File::Copy'          => 0,
        'File::Spec'          => 0,
        'File::MMagic'        => 1.22,
        'File::Path'          => 0,
        'MIME::Type'          => 0,
        'MIME::Types'         => 0,
        'Params::Validate'    => 0.77,
        'SQL::Abstract'       => 0,
        'CGI'                 => 0,
        'DBI'                 => 0,
        'DBD::SQLite'         => 1.1,
        'File::Temp'          => 0.15,
        'Test::DatabaseRow'   => 0,
        'HTTP::BrowserDetect' => 0.98,
        'Scalar::Util'        => 0,

        # For testing
        'HTTP::Request::Common' => 0,

    },
);



( run in 0.688 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )