1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/devel/noweb/pkg-install
2003-11-13 13:38:39 +00:00

12 lines
269 B
Bash

#!/bin/sh
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
if ! which mktexlsr >/dev/null; then
echo "I can't find mktexlsr in your search path."
echo "If you want to use noweb's (La)TeX output"
echo "you should also install the teTeX package."
else
mktexlsr
fi