diff options
Diffstat (limited to 'textproc/latex2html/pkg/INSTALL')
-rw-r--r-- | textproc/latex2html/pkg/INSTALL | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/textproc/latex2html/pkg/INSTALL b/textproc/latex2html/pkg/INSTALL new file mode 100644 index 00000000000..0725ec2f20a --- /dev/null +++ b/textproc/latex2html/pkg/INSTALL @@ -0,0 +1,21 @@ +#!/bin/sh +# +# $NetBSD: INSTALL,v 1.1 2000/11/03 01:05:06 jlam Exp $ + +PKGNAME=$1 +STAGE=$2 + +case ${STAGE} in +PRE-INSTALL) + ;; +POST-INSTALL) + # Rebuild the ls-R database after adding files to the teTeX tree. + # + mktexlsr + ;; +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |