Parse-Debian-Packages README


Parse-Debian-Packages documentation  | view source Contained in the Parse-Debian-Packages distribution.

Index


NAME

Top

Parse::Debian::Packages - parse the data from a debian Packages.gz

SYNOPSIS

Top

 use YAML;
 use IO::File;
 use Parse::Debian::Packages;
 my $fh = IO::File->new("Packages");

 my $parser = Parse::Debian::Packages->new( $fh );
 while (my %package = $parser->next) {
     print Dump \%package;
 }




DEPENDENCIES

Top

This module has external dependencies on the following modules:

 Module::Build	0.18
 Test::More

INSTALLATION

Top

 perl Build.PL
 perl Build test

and if all goes well

 perl Build install

HISTORY

Top

What changed over the last 3 revisions

0.01 Monday 17th November, 2003
	Initial release
=back

AUTHOR

Top

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Top

SEE ALSO

Top

Module::Packaged


Parse-Debian-Packages documentation  | view source Contained in the Parse-Debian-Packages distribution.