NAME

RPM::Util::Files::Entry -- Entry item class in %files list. =head1 VERSION

This document describes RPM::Util::Files::Entry version 0.0.1

SYNOPSIS

use RPM::Util::Files::Entry;

my $entry = RPM::Util::Files::Entry->new({
  'entry_type' => 'file',
  'entry' => '/var/tmp/some-package-version-root/usr/local/bin/some',
  'path' => '/usr/local/bin/some',
  'user' => 'root',
  'group' => 'root',
  'mode' => '0644'
});

METHODS

to_string($use_attr)

Getting entry as string. $use_attr parameter is true, using %attr parameter.

AUTHOR

Toru Yamaguchi, <zigorou at cpan.org>

BUGS

Please report any bugs or feature requests to bug-rpm-util-files-entry at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=RPM-Util-Files. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc RPM::Util::Files::Entry

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2006 Toru Yamaguchi, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.