freebsd-ports/print/lilypond/files/pkg-install.in
Oliver Eikemeier cdced3add9 - fix compilation and installation
- synce pkg-plist
- since 2.0 pfa-fonts are required, remove WITHOUT_PFA_FONTS option
- don't install .info twice
- make documentation optional

PR:		58120
Submitted by:	Patrick Atamaniuk <atamaniuk-ports@frobs.net> (maintainer)
Approved by:	marcus (mentor)
2003-11-20 20:17:10 +00:00

10 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