summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorlevinse <levinse>2010-11-19 23:07:03 +0000
committerlevinse <levinse>2010-11-19 23:07:03 +0000
commit94eb5c172414a10f346d83c29dfefeeb69618a2f (patch)
tree860289e8d15bdde49a27d4b393e6d3310fbf3fe0 /Makefile.PL
Initial import of Net::IkanoSTART
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..358637f
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,16 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Net::Ikano',
+ AUTHOR => 'Erik Levinson <levinse@freeside.biz>',
+ VERSION_FROM => 'lib/Net/Ikano.pm',
+ ABSTRACT_FROM => 'lib/Net/Ikano.pm',
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Net-Ikano-*' },
+);