/usr/share/perl5/Games/FrozenBubble/Config.pm is in frozen-bubble 2.212-8build2.
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 | package Games::FrozenBubble::Config;
use Config;
use File::ShareDir qw(dist_dir);
use File::Which;
use vars qw(@ISA @EXPORT $FPATH $FLPATH);
@ISA = qw(Exporter);
@EXPORT = qw($FPATH $FLPATH);
$FPATH = '/usr/share/games/frozen-bubble' ;
$FLPATH ='/usr/lib/games/frozen-bubble/fb-server';
1;
|