You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/sh# Make an AFM file from PFB / PFA and (optionally) PFM files. Usage:# pf2afm fontfilename# Output goes to fontfilename.afm, which must not already exist.# See pf2afm.ps for more details.
# This definition is changed on install to match the# executable name set in the makefileGS_EXECUTABLE=gsgs="`dirname \"$0\"`/$GS_EXECUTABLE"if test ! -x "$gs"; then gs="$GS_EXECUTABLE"fiGS_EXECUTABLE="$gs"
exec "$GS_EXECUTABLE" -q -dNODISPLAY -P- -dSAFER -dDELAYSAFER -- pf2afm.ps "$@"
|