blob: fe71de68b0d3b4598c765b4fc3d9d352f2ce7004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
test -d tests || mkdir -p tests
TEXMFCNF=$srcdir/../kpathsea
encpath=`$KPSEWHICH lm-mathit.enc` || exit 77
ENCFONTS="`dirname $encpath`"
t1path=`$KPSEWHICH lmmi12.pfb` || exit 77
T1FONTS="`dirname $t1path`"
afmpath=`$KPSEWHICH lmmi12.afm` || exit 77
AFMFONTS="`dirname $afmpath`"
export TEXMFCNF ENCFONTS T1FONTS AFMFONTS
./ps2pk -elm-mathit.enc -X600 -Y600 -R600 -S0 -E1 -P12.0 lmmi12.pfb lmmi12.600pk || exit 1
diff $srcdir/tests/lmmi12.600pk lmmi12.600pk || exit 1
|