| Parse-Debian-Packages documentation | view source | Contained in the Parse-Debian-Packages distribution. |
Parse::Debian::Packages - parse the data from a debian Packages.gz
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;
}
This module has external dependencies on the following modules:
Module::Build 0.18 Test::More
perl Build.PL perl Build test
and if all goes well
perl Build install
What changed over the last 3 revisions
Initial release =back
Richard Clamp <richardc@unixbeard.net>
Copyright (C) 2003 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module::Packaged
| Parse-Debian-Packages documentation | view source | Contained in the Parse-Debian-Packages distribution. |