How to create a MANIFEST file for a Perl module

I create several modules without using Module::Starter:(. I need to create a file MANIFESTto run my tests. Do I have to do this manually or is there an automated way to create it?

+5
source share
4 answers

Run make manifestor ./Build manifest, depending on the build tool.

He will choose mkmanifestfor you.

+19
source

You can create a manifest using ExtUtils :: Manifest package:

perl -MExtUtils::Manifest=mkmanifest -e 'mkmanifest()'

This oneliner will create a manifest in the current directory. It will also be used MANIFEST.SKIPif you have one.

+7
source

Dist:: Zilla, dist.ini, dzil build. MANIFEST .

+4

, ExtUtils::Manifest:

mkmanifest

   mkmanifest();

MANIFEST. Unix

   find . > MANIFEST

, MANIFEST.SKIP( ), .

MANIFEST MANIFEST.bak.

:

$ perl -mExtUtils::Manifest=mkmanifest -e 'mkmanifest()'
+4

All Articles