9869294faa
"usually quite stable and very usable, providing wanted new features." PR: 58260 Submitted by: Patrick Atamaniuk <atamaniuk-ports@frobs.net> Approved by: marcus (mentor)
11 lines
210 B
Bash
11 lines
210 B
Bash
#!/bin/sh
|
|
LOCALBASE="%%LOCALBASE%%"
|
|
DATADIRVERSION="%%DATADIRVERSION%%"
|
|
case $2 in
|
|
POST-INSTALL)
|
|
PATH=${LOCALBASE}/bin:${PATH}
|
|
export TEXMF="{${DATADIRVERSION},"`kpsexpand \\$TEXMF`"}"
|
|
texhash
|
|
;;
|
|
esac
|