/usr/share/perl5/Business/BR.pm is in libbusiness-br-ids-perl 0.0022-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | package Business::BR;
use 5;
use strict;
use warnings;
#require Exporter;
#our @ISA = qw(Exporter);
#our %EXPORT_TAGS = ( 'all' => [ qw() ] );
#our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
#our @EXPORT = qw();
our $VERSION = '0.0022';
1;
__END__
=head1 NAME
Business::BR - Root for namespace of Brazilian business-related modules
=head1 SYNOPSIS
use Business::BR; # does nothing, it is just a placeholder
=head1 DESCRIPTION
This module is meant to provide a root for the namespace C<Business::BR>.
It is meant as a placeholder to reserve and explain how the
namespace can be used.
To see actual code, take a look at C<Business::BR::*> modules
http://search.cpan.org/search?query=Business%3A%3ABR&mode=module
=head1 SEE ALSO
The namespace has been chosen based on similar modules
for other countries, like Business::FR::SSN which tests
the French "Numéro de Sécurité Sociale", the
C<Business::AU::*> L<http://search.cpan.org/search?query=Business%3A%3AAU&mode=module>
and
C<Business::CN::*> L<http://search.cpan.org/search?query=Business%3A%3ACN&mode=module>
modules.
Please reports bugs via CPAN RT,
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Business-BR-Ids
=head1 AUTHOR
A. R. Ferreira, E<lt>ferreira@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2005 by A. R. Ferreira
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.6 or,
at your option, any later version of Perl 5 you may have available.
=cut
|