/usr/lib/perl5/pods/SDL/CDROM.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 52 53 54 55 56 57 58 59 60 61 62 63 64 | =pod
=head1 NAME
SDL::CDROM -- SDL Bindings for the CDROM device
=head1 CATEGORY
Core, CDROM
=head1 SYNOPSIS
use SDL ':init';
use SDL::CDROM;
SDL::init(SDL_INIT_CDROM);
print SDL::CDROM::num_drives();
print SDL::CDROM::name(0);
SDL::quit();
=head1 METHODS
=head2 num_drives
my $drives = SDL::CDROM::num_drives();
Returns number of drives available on the system
=head2 name
my $drive_name = SDL::CDROM::name($drive_num);
Returns human readable name for CDROM device
Examples:
=over
=item *
'/dev/cdrom'
=item *
'E:'
=item *
'/dev/disk/ide/1/master'
=back
=head1 See Also
L<SDL::CD>, L<SDL::CDTrack>
=head1 AUTHORS
See L<SDL/AUTHORS>.
=cut
|