distar fixes
Graham Knop [Sat, 16 Aug 2014 00:28:23 +0000 (20:28 -0400)]
.gitignore
Changes [moved from ChangeLog with 100% similarity]
maint/Makefile.PL.include [new file with mode: 0644]

index 8ec66bc..802f097 100644 (file)
@@ -1,18 +1,15 @@
-.*
-!.gitignore
-Makefile*
-!Makefile.PL
-META.*
-MYMETA.*
-blib
-build
-inc
-pm_to_blib
+/Makefile
+/Makefile.old
+/META.*
+/MYMETA.*
+/blib
+/build
+/inc
+/pm_to_blib
 /MANIFEST
 /MANIFEST.bak
 /MANIFEST.SKIP
 /Distar
 Debian*
-README
 /Class-C3-*/
 /Class-C3-*.tar.gz
similarity index 100%
rename from ChangeLog
rename to Changes
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..d573dd7
--- /dev/null
@@ -0,0 +1,11 @@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar 0.001;
+
+use ExtUtils::MakeMaker 6.57_10 ();
+
+author 'Stevan Little, <stevan@iinteractive.com>';
+
+manifest_include opt => '.pm';
+
+1;