1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6    NAME                => 'Object::Event',
7    AUTHOR              => 'Robin Redeker <elmex@x-paste.de>',
8    LICENSE             => 'perl',
9    VERSION_FROM        => 'lib/Object/Event.pm',
10    ABSTRACT_FROM       => 'lib/Object/Event.pm',
11    PL_FILES            => {},
12    test                => { TESTS => "t/*.t t/methds/*.t" },
13    PREREQ_PM => {
14        'Test::More'    => 0,
15        'AnyEvent'      => 3.5,
16        'common::sense' => 0,
17    },
18    dist                => {
19       COMPRESS => 'gzip -9f',
20       SUFFIX   => 'gz',
21       PREOP => 'pod2text lib/Object/Event.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
22    },
23    clean               => { FILES => 'Object-Event-*' },
24);
25