From: Florian Ragwitz <rafl@debian.org>
Date: Wed, 1 Aug 2012 15:24:03 +0000 (-0400)
Subject: Add a minimal Makefile.PL
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=HEAD;p=p5sagit%2FGather-Once.git

Add a minimal Makefile.PL
---

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..b71a81a
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+use Devel::CallParser;
+use Devel::CallChecker;
+use IO::File;
+use ExtUtils::MakeMaker;
+
+IO::File->new('callchecker0.h', 'w')->print(
+    Devel::CallChecker::callchecker0_h,
+);
+
+IO::File->new('callparser.h', 'w')->print(
+    Devel::CallParser::callparser0_h,
+);
+
+WriteMakefile(
+    NAME => 'Gather::Once',
+);