Initial import (0.03)
[Net-OpenSRS.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..b5f38df
--- /dev/null
@@ -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-*' },
+);