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                => 'EBook::EPUB',
    AUTHOR              => q{Oleksandr Tymoshenko <gonzo@bluezbox.com>},
    VERSION_FROM        => 'lib/EBook/EPUB.pm',
    ABSTRACT_FROM       => 'lib/EBook/EPUB.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'bsd')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Archive::Zip'  => 0,
        'Carp'          => 0,
        'Data::UUID'    => 0,
        'File::Copy'    => 0,
        'File::Find'    => 0,
        'File::Temp'    => 0,
        'Moose'         => '0.90',
        'Test::More'    => 0,
        'XML::Writer'   => 0,
    },
    META_ADD => {
        resources => {
            repository => 'http://github.com/gonzoua/EBook-EPUB',
        },
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'EBook-EPUB-*' },
);