Name: Charles Ritter
Email: [EMAIL PROTECTED]
Homepage: N/A
Preferred UID: critter
Description:

AIX::LPP is a perl object class for the creation and manipulation of AIX binary 
packages and package data. The current version is 0.4.  It currently consists of 
AIX::LPP::lpp_name.pm, documentation, and a small test suite.  The basic syntax is:

use AIX::LPP::lpp_name;

$package = AIX::LPP::lpp_name->read(\*fh);
my ($name,$type,$platform,$version) = $package->lpp();
$ar_ref = $package->fileset('fileset.name.ext');

or for writing a lpp_name (the internal package control file):

use AIX::LPP::lpp_name;

$package = AIX::LPP::lpp_name->new(...)
$package->fileset('fileset.name.ext',...)
$package->requirements('fileset.name.ext',\@reqs);
$package->write(\*ofh);

Thanks


Reply via email to