I'm creating a Perl 5 module distribution, the source of which is hosted on github. I've run into the same problem as user Anirvan in this question: I'd like github to see a README.md file, but the .tar.gz to include the same file as plain README. The answer to that question, "use README.pod for both", works in this case, but I'm wondering if I could have made my original attempt work:
- I only have
README.mdin the repository, notREADME. - My
MANIFESTcontainsREADME(since that's going into the tarball), but notREADME.md(since it isn't). - My
MANIFEST.SKIPcontainsREADME.md, since I don't want that in the tarball. - My
Makefile.PL(*) has an entry underPL_FILESto a short script that copies theREADME.mdto aREADMEfile
This generates the README, but along the way:
t/manifest.twithoutmakecomplains thatREADMEis in the manifest, but is missingperl Makefile.PLalso complains aboutREADMEmissing
Am I misinterpreting the purpose of the MANIFEST file, or this test? Is it somehow possible to denote a file which should be packed, but isn't there yet? I've tried changing the test, but I could only find a way for Test::CheckManifest to ignore files that were there, but "shouldn't be", not ignore files that are not there, but "should".
(*) Yes, I'm using ExtUtils::MakeMaker, since that's what module-starter defaulted to, and it works so far. I'm not sure if another tool would change much, though.