/usr/lib/perl5/Mouse/XS.pod is in libmouse-perl 0.97-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 | =head1 NAME
Mouse::XS - A Mouse guts in XS
=head1 VERSION
This document describes Mouse version 0.97
=head1 DESCRIPTION
Mouse has an optional XS implementation, which is automatically built
and used if available. According to benchmarks, this is about 2 times
faster than Mouse::PurePerl.
=head2 INSTALL
The XS implementation are selected by default, but you can force it by
passing the C<--xs> option to F<Makefile.PL>.
perl Makefile.PL --xs
If you do not want to build the XS implementation, you can pass the C<--pp>
option to F<Makefile.PL>.
perl Makefile.PL --pp
=head2 The MOUSE_PUREPERL (or PERL_ONLY) environment variable
It can be used to enable the use of Mouse::PurePerl in order to test
and debug programs that use Mouse.
=head1 DEPENDENCIES
The XS implementation requires Perl 5.8.1 or later, and a C compiler.
=head1 SEE ALSO
L<Mouse>
L<Mouse::PurePerl>
=cut
|