This file is indexed.

/usr/lib/perl5/pods/SDL/Version.pod is in libsdl-perl 2.540-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
=pod

=head1 NAME

SDL::Version - SDL Bindings for structure SDL_Version

=head1 CATEGORY

Core, Structure

=head1 SYNOPSIS

 use SDL;
 use SDL::Version;

 # print compile-time version
 printf("SDL::version is %d.%d.%d\n", SDL::version->major,
                                      SDL::version->minor,
                                      SDL::version->patch);

 # print linked version
 printf("SDL::linked_version is %d.%d.%d\n", SDL::linked_version->major,
                                             SDL::linked_version->minor,
                                             SDL::linked_version->patch);

=head1 DESCRIPTION

The C<SDL::Version> structure is used by the C<SDL::linked_version> function and the C<SDL::version> macro.
The C<SDL::linked_version> function returns the link-time SDL version whereas C<SDL::version> returns the compile-time SDL version.
B<Note:> This is the SDL version, not the SDL_Perl version.
The SDL_Perl version is in C<$SDL::VERSION>.

=head1 METHODS

=head2 major

Returns the major version number.

=head2 minor

Returns the minor version number.

=head2 patch

Returns the patch version number.

=head1 AUTHORS

See L<SDL/AUTHORS>.

=cut