summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorjeff <jeff>2010-03-31 16:23:40 +0000
committerjeff <jeff>2010-03-31 16:23:40 +0000
commit816672146578e431cb606071f1ac0be2afd5399f (patch)
treef6d461ae26f3b401251b3f5804479d95c6b421ff /Makefile.PL
initial importimport
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..2654f66
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,14 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Net::DashCS',
+ AUTHOR => 'Jeff Finucane <dashcs@weasellips.com>',
+ VERSION_FROM => 'lib/Net/DashCS.pm',
+ ABSTRACT_FROM => 'lib/Net/DashCS.pm',
+ PREREQ_PM => {
+ 'SOAP::WSDL' => 2,
+ 'SOAP::Lite' => 0.71,
+ },
+);