summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..c6dbbc8
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Net::HTTPS::Any',
+ AUTHOR => 'Ivan Kohler <ivan-net-https-any@freeside.biz>',
+ VERSION_FROM => 'lib/Net/HTTPS/Any.pm',
+ ABSTRACT_FROM => 'lib/Net/HTTPS/Any.pm',
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ 'URI::Escape' => 0,
+ 'Tie::IxHash' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Net-HTTPS-Any-*' },
+);