The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'AnyEvent::CallbackStack',
    AUTHOR              => q{BlueT - Matthew Lien - 練喆明 <BlueT@BlueT.org>},
    VERSION_FROM        => 'lib/AnyEvent/CallbackStack.pm',
    ABSTRACT_FROM       => 'lib/AnyEvent/CallbackStack.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'		=> 0,
        'Test::Simple'		=> 0,
        'feature'		=> 0,
	'AnyEvent'		=> 0,
	'common::sense'		=> 0,
	'Data::Dumper::Simple'	=> 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'AnyEvent-CallbackStack-*' },
);