MANIFEST

Añadimos un fichero MANIFEST.SKIP que nos ayude a construir de manera automática el MANIFEST:
~/Lperl/src/threads/knapsack/Algorithm-Knap01DP$ cat -n MANIFEST.SKIP
 1  \.o$
 2  ^\.cvsignore$
 3  /\.cvsignore$
 4  \.cvsignore$
 5  CVS/[^/]+$
 6  ^Makefile$
 7  /Makefile$
 8  ^blib/
 9  \.swp$
10  \.bak$
11  \.pdf$
12  \.ps$
13  pm_to_blib
14  .pdf$
Ahora podemos construir el fichero MANIFEST sin mas que hacer make manifest:
hp@nereida:~/Lperl/src/threads/knapsack/Algorithm-Knap01DP$ make manifest
/usr/bin/perl "-MExtUtils::Manifest=mkmanifest" -e mkmanifest
Added to MANIFEST: Changes
Added to MANIFEST: lib/Algorithm/Knap01DP.pm
Added to MANIFEST: Makefile.PL
Added to MANIFEST: MANIFEST
Added to MANIFEST: MANIFEST.SKIP
Added to MANIFEST: README
Added to MANIFEST: t/01alltests.t
Added to MANIFEST: t/02bench.t
Added to MANIFEST: t/example.pl
Added to MANIFEST: t/knap.dat
Added to MANIFEST: t/knap21.dat
Added to MANIFEST: t/knap22.dat
Added to MANIFEST: t/knap23.dat
Added to MANIFEST: t/knap25.dat
Added to MANIFEST: t/knapanderson.dat
Added to MANIFEST: t/kwalitee.t
Added to MANIFEST: t/usealknap.pl
Added to MANIFEST: TODO
lhp@nereida:~/Lperl/src/threads/knapsack/Algorithm-Knap01DP$ cat MANIFEST
Changes
lib/Algorithm/Knap01DP.pm
Makefile.PL
MANIFEST                        This list of files
MANIFEST.SKIP
README
t/01alltests.t
t/02bench.t
t/example.pl
t/knap.dat
t/knap21.dat
t/knap22.dat
t/knap23.dat
t/knap25.dat
t/knapanderson.dat
t/kwalitee.t
t/usealknap.pl
TODO

Casiano Rodríguez León
Licencia de Creative Commons
Principios de Programación Imperativa, Funcional y Orientada a Objetos Una Introducción en Perl/Una Introducción a Perl
por Casiano Rodríguez León is licensed under a Creative Commons Reconocimiento 3.0 Unported License.

Permissions beyond the scope of this license may be available at http://campusvirtual.ull.es/ocw/course/view.php?id=43.
2012-06-19