blob: 1f37ae8893a7166215d17ff67a31d3ad0bcd77a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
use ExtUtils::MakeMaker;
#
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
#
# As well, if you wish to force a minimal perl version to run the
# script, insert a line, for example,
#
# require 5.004;
#
# below.
WriteMakefile(
'NAME' => 'texdepend',
'VERSION_FROM' => 'texdepend', # finds $VERSION
'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz' },
'EXE_FILES' => [ 'texdepend' ], # scripts to install
);
|