distify
Matt S Trout [Sun, 9 Sep 2012 18:32:31 +0000 (18:32 +0000)]
Changes [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
maint/Makefile.PL.include [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..7185c76
--- /dev/null
+++ b/Changes
@@ -0,0 +1 @@
+  - Initial release
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..918cd8c
--- /dev/null
@@ -0,0 +1,10 @@
+use strict;
+use warnings FATAL => 'all';
+use ExtUtils::MakeMaker;
+
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'curry',
+  VERSION_FROM => 'lib/curry.pm'
+);
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..dc0d14a
--- /dev/null
@@ -0,0 +1,8 @@
+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>';