/usr/local/CPAN/Protocol-XMLRPC/Makefile.PL


use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Protocol::XMLRPC',
    AUTHOR        => 'Viacheslav Tykhanovskyi <vti@cpan.org>',
    VERSION_FROM  => 'lib/Protocol/XMLRPC.pm',
    ABSTRACT_FROM => 'lib/Protocol/XMLRPC.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
        ? ('LICENSE' => 'perl')
        : ()),
    PL_FILES  => {},
    PREREQ_PM => {
        'Test::More'   => 0,
        'XML::LibXML'  => 0,
        'MIME::Base64' => 0
    },
    dist  => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
    clean => {FILES    => 'Protocol-XMLRPC-*'}
);