/usr/share/perl5/XML/TMX.pm is in libxml-tmx-perl 0.31-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 | package XML::TMX;
# vim:sw=3:ts=3:et:
use 5.004;
use warnings;
use strict;
use parent 'Exporter';
our $VERSION = '0.31';
our @ISA = 'Exporter';
our @EXPORT_OK = qw();
=encoding utf-8
=head1 NAME
XML::TMX - Perl extensions for managing TMX files
=head1 SYNOPSIS
use XML::TMX;
=head1 DESCRIPTION
XML::TMX is the top level module. At the moment it does not contain
any useful code, so check sub-modules, please.
=head1 SEE ALSO
XML::TMX::Writer, XML::TMX::Reader, XML::TMX::FromPO
L<XML::Writer(3)>, TMX Specification L<https://www.gala-global.org/oscarStandards/tmx/tmx14b.html>
=head1 AUTHOR
Alberto Simões, E<lt>albie@alfarrabio.di.uminho.ptE<gt>
Paulo Jorge Jesus Silva, E<lt>paulojjs@bragatel.ptE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2003-2012 by Projecto Natura
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|