root/lang/perl/HTTPx-Dispatcher-Simple/Makefile.PL @ 18953

Revision 17666, 0.6 kB (checked in by kuzuha, 5 years ago)

HTTPx-Dispatcher-Simple initial release

Line 
1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'HTTPx::Dispatcher::Simple',
7    AUTHOR              => 'Kuzuha Shinoda <kuzuha01@hotmail.com>',
8    VERSION_FROM        => 'lib/HTTPx/Dispatcher/Simple.pm',
9    ABSTRACT_FROM       => 'lib/HTTPx/Dispatcher/Simple.pm',
10    PL_FILES            => {},
11    PREREQ_PM => {
12        'Test::Base' => 0,
13        'version'    => 0,
14    },
15    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16    clean               => { FILES => 'HTTPx-Dispatcher-Simple-*' },
17);
Note: See TracBrowser for help on using the browser.