Initial import (0.03)
[Net-OpenSRS.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME          => 'Net::OpenSRS',
7     AUTHOR        => 'Richard L. Siddall <opensrs@elirion.net>', # Really just maintainer
8     VERSION_FROM  => 'lib/Net/OpenSRS.pm',
9     ABSTRACT_FROM => 'lib/Net/OpenSRS.pm',
10     PL_FILES      => {},
11     PREREQ_PM     => {
12         'Test::More'     => 0,
13         'LWP::UserAgent' => 0,
14         'XML::Simple'    => 0,
15         'Digest::MD5'    => 0,
16         'Date::Calc'     => 0,
17     },
18     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
19     clean => { FILES    => 'Net-OpenSRS-*' },
20 );