/usr/share/perl5/LaTeX/Driver/Paths.pm is in liblatex-driver-perl 0.10-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 65 66 67 68 69 70 | #============================================================= -*-perl-*-
#
# LaTeX::Driver::Paths
#
# DESCRIPTION
# Provides an interface to Latex from the Template Toolkit.
#
# AUTHOR
# Andrew Ford <a.ford@ford-mason.co.uk>
#
# COPYRIGHT
# Copyright (C) 2007 Andrew Ford. All Rights Reserved.
#
# This module is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
# HISTORY
# * Module extracted from Template::Latex module originally by Andy Wardley,
# September 2007
#
# $Id: Paths.pm 45 2007-09-28 10:33:19Z andrew $
#========================================================================
package LaTeX::Driver::Paths;
use strict;
use warnings;
# LaTeX executable paths set at installation time by the Makefile.PL
our %program_path;
$program_path{latex} = '/usr/bin/latex';
$program_path{pdflatex} = '/usr/bin/pdflatex';
$program_path{bibtex} = '/usr/bin/bibtex';
$program_path{makeindex} = '/usr/bin/makeindex';
$program_path{dvips} = '/usr/bin/dvips';
$program_path{dvipdfm} = '/usr/bin/dvipdfm';
$program_path{pdf2ps} = '/usr/bin/pdf2ps';
$program_path{ps2pdf} = '/usr/bin/pdf2ps';
1;
__END__
=head1 NAME
LaTeX::Driver::Paths - LaTeX Driver (Paths)
=head1 SYNOPSIS
N/A - this file is only intended to be used from C<LaTeX::Driver>
=head1 DESCRIPTION
This module defines the default paths for the LaTeX executables. It
is updated by Makefile.PL.
=head1 AUTHOR
Andrew Ford E<lt>a.ford@ford-mason.co.ukE<gt>
=head1 LICENSE AND COPYRIGHT
Copyright (C) 2007 Andrew Ford. All Rights Reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
|