version bump and release 0.03
[AnyEvent-HTTPD.git] / Makefile.PL
blobc04a8aab0091a97f55fa7555947444a95dae82e8
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6     NAME                => 'AnyEvent::HTTPD',
7     AUTHOR              => 'Robin Redeker <elmex@ta-sa.org>',
8     VERSION_FROM        => 'lib/AnyEvent/HTTPD.pm',
9     ABSTRACT_FROM       => 'lib/AnyEvent/HTTPD.pm',
10     LICENSE             => 'perl',
11     PL_FILES            => {},
12     PREREQ_PM => {
13         'Test::More'     => 0,
14         'HTTP::Date'     => 0,
15         'Object::Event'  => 0,
16         'POSIX'          => 0,
17         'URI'            => 0,
18         'Fcntl'          => 0,
19         'CGI'            => 0,
20     },
21     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz',
22                              PREOP => 'pod2text lib/AnyEvent/HTTPD.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
23     },
24     clean               => { FILES => 'AnyEvent-HTTPD-*' },