basic dist infrastructure
Matt S Trout [Fri, 23 Dec 2011 07:41:08 +0000 (07:41 +0000)]
Makefile.PL [new file with mode: 0644]
maint/Makefile.PL.include [new file with mode: 0644]

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',
+     },
+  }
+);
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..3f4e47a
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';