blob: befbc0bd7ed9b501322664c61d95a823b0f1db4d (
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' => 'texref',
'VERSION_FROM' => 'texref', # finds $VERSION
'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz' },
'EXE_FILES' => [ 'texref' ], # scripts to install
);
|