summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2009-08-26 19:04:29 +0000
committerjeff <jeff>2009-08-26 19:04:29 +0000
commit2539a26d03ca41b756a41d1946cbf319dfba92b5 (patch)
tree759d18c6e612f463794a43adf67a83c5e59f2c43
parentea9bb3b7848dc63d0abce5e77d2f9c58096fa486 (diff)
Initial import (0.03)
-rw-r--r--Makefile.PL20
1 files changed, 20 insertions, 0 deletions
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 <opensrs@elirion.net>', # 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-*' },
+);