basic dist infrastructure
[scpubgit/Tak-Daemon.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..09d578b
--- /dev/null
@@ -0,0 +1,21 @@
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'Tak::Daemon',
+  VERSION_FROM => 'lib/Tak/Daemon.pm',
+  PREREQ_PM => {
+    'Tak' => '0.001002',
+    'IO::Async' => '0.45'
+  },
+  LICENSE => 'perl',
+  META_MERGE => {
+     resources => {
+         license     => 'http://dev.perl.org/licenses/',
+         repository  => 'git://git.shadowcat.co.uk/scpubgit/Tak-Daemon.git',
+     },
+  }
+);