blob: a16b7f64503b681927e499db1ea32c0c7d3bf42b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
To install the script and man pages in the standard areas,
give the sequence of commands
perl Makefile.PL
make
make install
If you want to install the script in your own private space, use
perl Makefile.PL PREFIX=/my/private/perllib \
INSTALLMAN1DIR=/my/private/perllib/man/man1 \
INSTALLMAN3DIR=/my/private/perllib/man/man3
make
make install
Or, just do
cp -p texref /usr/local/bin
cp -p texref /usr/local/man/man1
|