RPM::Util::Files::Entry


NAME

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

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

Back to Top


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'
    });

Back to Top


METHODS

to_string($use_attr)

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

Back to Top


AUTHOR

Toru Yamaguchi, <zigorou at cpan.org>

Back to Top


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. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Back to Top


SUPPORT

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

    perldoc RPM::Util::Files::Entry

You can also look for information at:

Back to Top


ACKNOWLEDGEMENTS

Back to Top


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.

Back to Top

 RPM::Util::Files::Entry