From: jeff Date: Wed, 26 Aug 2009 19:04:29 +0000 (+0000) Subject: Initial import (0.03) X-Git-Tag: initial~2 X-Git-Url: http://git.freeside.biz/gitweb/?p=Net-OpenSRS.git;a=commitdiff_plain;h=2539a26d03ca41b756a41d1946cbf319dfba92b5 Initial import (0.03) --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..b5f38df --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Net::OpenSRS', + AUTHOR => 'Richard L. Siddall ', # Really just maintainer + VERSION_FROM => 'lib/Net/OpenSRS.pm', + ABSTRACT_FROM => 'lib/Net/OpenSRS.pm', + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'LWP::UserAgent' => 0, + 'XML::Simple' => 0, + 'Digest::MD5' => 0, + 'Date::Calc' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Net-OpenSRS-*' }, +);