1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00
freebsd-ports/textproc/ppower4/pkg-deinstall

14 lines
378 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ "$2" = "POST-DEINSTALL" ]; then
echo "Updating content cache to let LaTeX know about the new style files:"
if [ -x ${PKG_PREFIX}/bin/mktexlsr ]; then
${PKG_PREFIX}/bin/mktexlsr
elif [ -x /usr/local/bin/mktexlsr ]; then
/usr/local/bin/mktexlsr
else
echo "Could not find mktexlsr. Please run it manually to update"
echo "LaTeX's content cache."
fi
fi