Extutils-Packlist

ExtUtils::Packlist(3p) Perl Programmers Reference Guide

Extutils-Packlist

ExtUtils::Packlist(3p) Perl Programmers Reference Guide # ExtUtils::Packlist(3p) Perl Programmers Reference Guide NNAAMMEE # ExtUtils::Packlist - manage .packlist files SSYYNNOOPPSSIISS # use ExtUtils::Packlist; my ($pl) = ExtUtils::Packlist->new('.packlist'); $pl->read('/an/old/.packlist'); my @missing_files = $pl->validate(); $pl->write('/a/new/.packlist'); $pl->{'/some/file/name'}++; or $pl->{'/some/other/file/name'} = { type => 'file', from => '/some/file' }; DDEESSCCRRIIPPTTIIOONN # ExtUtils::Packlist provides a standard way to manage .packlist files. Functions are provided to read and write .packlist files. The original .packlist format is a simple list of absolute pathnames, one per line. ...