- Apply patch from Justin Hunter:
[Net-OpenSRS.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME          => 'Net::OpenSRS',
7     AUTHOR        => 'Ivan Kohler <ivan-opensrs@freeside.biz>', # Really just the current maintainer
8     VERSION_FROM  => 'lib/Net/OpenSRS.pm',
9     ABSTRACT_FROM => 'lib/Net/OpenSRS.pm',
10     PL_FILES      => {},
11     PREREQ_PM     => {
12         'LWP::UserAgent' => 0,
13         'XML::Simple'    => 0,
14         'Digest::MD5'    => 0,
15         'Date::Calc'     => 0,
16         'Locales'        => 0,
17         'Number::Phone'  => 0,
18     },
19     BUILD_REQUIRES => {
20         'Test::More'     => 0,
21     },
22     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
23     clean => { FILES    => 'Net-OpenSRS-*' },
24 );